/**
 * BVA Alkmaar — Login Page Styles
 */

body.login {
    background: #F5F5F5;
}

.login h1 a {
    background-image: url('../images/logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 280px;
    height: 80px;
}

.login form {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
}

.login input[type="submit"] {
    background: #04ABE4;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.login input[type="submit"]:hover {
    background: #037DAA;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: #04ABE4;
    box-shadow: 0 0 0 3px rgba(4, 171, 228, 0.15);
}

.login .message,
.login .success {
    border-left-color: #04ABE4;
}
