body.login-page {
    background: linear-gradient(135deg, #161616 0%, #4DCE74 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-login {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 584px;
    min-height: 520px;
    border: none;
    outline: none;
}

.login-box {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25); /* sombra elegante sin fondo doble */
    width: 100%;
    max-width: 584px;
    min-height: 520px;
    border: none;          /* asegura que no haya borde */
    outline: none;         /* elimina outline */
    outline-offset: 0;     /* asegura que no se separe nada */
}
/* Ajustar el grupo del input */
.input-group {
    display: flex;
    align-items: center;
}

/* Caja de icono a la izquierda */
.input-group-text {
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-right: none;
    height: 50px; /* igual al input */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    color: #666;
}

/* Campo de entrada */
.form-control {
    height: 50px;
    font-size: 16px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 0 10px 10px 0;
    box-shadow: none;
    outline: none;
}

/* Efecto al enfocar */
.form-control:focus {
    border-color: #4DCE74;
    box-shadow: 0px 0px 5px rgba(77, 206, 116, 0.4);
}

/* Espaciado entre inputs */
.form-group {
    margin-bottom: 20px;
}


.login-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: #161616;
}

.login-header p {
    font-size: 16px;
    color: #555;
}

.form-control {
    font-size: 16px;
    height: 48px;
    padding: 10px 14px;
    border-radius: 10px;
}

.btn-primary {
    background-color: #4DCE74;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3bb964;
}


.login-logo {
    width: 140px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4DCE74;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3bb964;
}
