/* login.css */
body {
    background: radial-gradient(circle, #2a2a2a 0%, #000000 100%);
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0;
}

.login-card {
    background: rgba(28, 28, 28, 0.95);
    border-radius: 20px;
    border: 1px solid #d4af37;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
}

/* Efecto Dorado para el Nombre */
.business-name {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 3px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.gold-divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #aa771c);
    margin-bottom: 10px;
}

.subtitle {
    color: #d4af37;
    font-size: 0.8rem;
    letter-spacing: 5px;
    font-weight: 300;
}

.form-label {
    color: #d4af37;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Inputs Estilizados */
.custom-input {
    background-color: #000000 !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
    padding: 12px;
    border-radius: 8px;
}

.custom-input:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
}

/* Botón Dorado Metálico */
.btn-gold {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #aa771c);
    color: #000 !important;
    font-weight: 700;
    border: none;
    letter-spacing: 1px;
    padding: 15px;
    transition: all 0.4s ease;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #aa771c, #fcf6ba, #bf953f);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

#mensaje {
    font-size: 0.9rem;
    color: #ff4d4d;
    font-weight: 500;
}