
body {
    font-family: 'DM Sans', sans-serif;
}
.text { 
font-size: 14px; 
color: #A3AED0;


}  
.login-container {
    height: 100vh;
} 

.btn-login  { 
 background-color:#8A6AFB !important; 
 transition:  0.3s ease-in-out;
}   
.btn-login:hover  { 
    background-color:#7257d2 !important; 
    transition:  0.3s ease-in-out;
   }  
   


.left-side {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}

.right-side { 
    display:flex; 
    align-items: center;
    justify-content: center;
   
    background-size: cover; 
    border-radius:0px 0px 0px 120px;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

.form-control {
    padding: 15px 21px 15px 40px;
    border-radius: 8px; 
    color:#A3AED0 !important;
} 
.form-group i {

    color:#A3AED0 !important;
}


.btn-primary {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

.text-center a {
    color: #007bff;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}  
.login-card  {
   border:none; 
   box-shadow:none;
}   
.login-perfil {
/* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);

  width: 400px; 
  padding-top:40px;
}   
 
.btn-primary {
   border:none;
   background-color: #8A6AFB !important;
   transition: 0.3s ease-in-out;
}
.btn-primary:hover {
    background-color: #7257d2 !important;
    transition: 0.3s ease-in-out;
}

/* Estilos para el botón de Google */
.btn-google {
    width: 100%;
    border: 2px solid #e8eaed;
    background: white;
    color: #3c4043;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    color: #3c4043;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-google i {
    font-size: 18px;
    color: #4285f4;
}

/* Separador entre botones */
.login-separator {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #6c757d;
    font-size: 14px;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

.login-separator span {
    padding: 0 15px;
}

/* Centrar logo en móvil */
@media (max-width: 768px) {
    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

