/* === VanHuyse Makelaarsportaal Login === */

/* Achtergrond */
body.login {
    background: linear-gradient(135deg, #1E3A5F 0%, #152a45 100%);
    /* Of met vastgoed-sfeer afbeelding: */
    /* background: url('../images/login-bg.jpg') center center / cover no-repeat fixed; */
}

/* Login box */
#login {
    width: 380px;
    padding-top: 6%;
}

#loginform {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    padding: 40px 32px;
}

/* Logo */
#login h1 a {
    background-image: url('../images/logo-huysie.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
}

/* Labels */
#loginform label {
    color: #1E3A5F;
    font-size: 14px;
    font-weight: 500;
}

/* Input velden */
#loginform input[type="text"],
#loginform input[type="password"] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    border-color: #1E3A5F;
    outline: none;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.12);
    background: #ffffff;
}

/* Login knop - VanHuyse blauw */
#wp-submit {
    background: #1E3A5F;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.35);
    margin-top: 10px;
}

#wp-submit:hover {
    background: #2a4d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 58, 95, 0.45);
}

/* Remember me */
.forgetmenot {
    float: none !important;
    margin-top: 15px;
}

.forgetmenot label {
    font-size: 13px;
    color: #6b7280;
}

/* Verberg "Terug naar site" */
#backtoblog {
    display: none;
}

/* Wachtwoord vergeten */
#nav {
    text-align: center;
    padding-top: 20px;
}

#nav a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

#nav a:hover {
    color: #ffffff !important;
}

/* Foutmeldingen */
#login_error,
.message,
.success {
    border-left: 4px solid #1E3A5F;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #ffffff;
}

/* Verberg WordPress elementen */
.privacy-policy-page-link,
.language-switcher {
    display: none;
}

/* Subtiele footer tekst (optioneel) */
body.login::after {
    content: "© VanHuyse Makelaars";
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 30px;
}