.bipeek-login-card {
    max-width: 450px;
    margin: 40px auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.bipeek-login-form .form-group {
    margin-bottom: 25px;
}

.bipeek-login-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.bipeek-login-form label .required {
    color: #e74c3c;
}

.bipeek-login-form input[type="text"],
.bipeek-login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #fdfdfd;
    transition: border-color 0.3s;
}

.bipeek-login-form input:focus {
    border-color: #5a67d8;
    outline: none;
}

.form-utils {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.lost-pass {
    color: #7f8c8d;
    text-decoration: none;
}

.btn-acceso {
    width: 100%;
    background: #5260b4; /* El azul de tu imagen */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-acceso:hover {
    background: #434f9a;
}

.footer-link {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    color: #5260b4;
}

.footer-link a {
    text-decoration: none;
    font-weight: 500;
}

.login-error-msg {
    background: #fdf2f2;
    color: #c0392b;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #c0392b;
}