/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Child theme for GeneratePress
 Author:       Jan Everts
 Author URI:   https://janeverts.com
 Template:     generatepress
 Version:      1.0.0
*/
/* =========================
   LOGIN PAGINA – CLEAN
   ========================= */

body.login-page {
    min-height: 100vh;
    margin: 0;
}

body.login-page .login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Container rechts */
body.login-page .jan-login-form {
    width: 100%;
    max-width: 520px;
}

/* Form card */
body.login-page .jan-login-form #loginform {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

/* Spacing en labels */
body.login-page .jan-login-form #loginform p {
    margin: 0 0 16px;
}

body.login-page .jan-login-form #loginform label {
    display: block;
    margin: 0 0 8px;
    font-weight: 600;
}

/* Inputs */
body.login-page .jan-login-form #loginform input[type="text"],
body.login-page .jan-login-form #loginform input[type="password"] {
    width: 100%;
    height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: 12px;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
}

body.login-page .jan-login-form #loginform input[type="text"]:focus,
body.login-page .jan-login-form #loginform input[type="password"]:focus {
    border-color: rgba(0, 0, 0, .35);
    box-shadow: 0 0 0 3px rgba(255, 103, 31, .18);
}

/* Remember me */
body.login-page .jan-login-form #loginform .login-remember {
    margin-top: 8px;
}

body.login-page .jan-login-form #loginform .login-remember label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500;
}

/* Login button */
body.login-page .jan-login-form #loginform #wp-submit {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #ff671f;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

body.login-page .jan-login-form #loginform #wp-submit:hover {
    filter: brightness(.95);
}

body.login-page #wp-submit.is-loading {
    opacity: .75;
    cursor: wait;
}

/* Wachtwoord vergeten */
body.login-page .jan-login-form .jan-login-links {
    margin-top: 14px;
}

body.login-page .jan-login-form .jan-login-links a {
    text-decoration: none;
}

body.login-page .jan-login-form .jan-login-links a:hover {
    text-decoration: underline;
}

/* Verberg de Buttons-blok knop (oude registreerknop) */
body.login-page .wp-block-buttons {
    display: none;
}

/* Nieuwe registreer tekstlink onder wachtwoord vergeten */
body.login-page .login-register-text {
    margin-top: 12px;
    font-size: 16px;
}

body.login-page .login-register-text a {
    font-weight: 600;
    text-decoration: none;
}

body.login-page .login-register-text a:hover {
    text-decoration: underline;
}