/* Marketing Shift Login - Clean versie */

/* Lemon Milk font definitie */
@font-face {
    font-family: 'Lemon Milk';
    src: url('../fonts/LEMONMILK-Bold.woff2') format('woff2'),
         url('../fonts/LEMONMILK-Bold.woff') format('woff'),
         url('../fonts/LEMONMILK-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Poppins font van Google Fonts CDN */
@font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2') format('woff2');
}

/* Base login styling - creme achtergrond */
.login {
    background: #FFF2ED;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 90svh;
    display: flex;
    position: relative;
}

.login form {
    overflow:visible!important;
}

/* Login form container - linkerhelft met witte achtergrond en border radius */
.login #login {
    width: 50%;
    height: auto;
    min-height:575px;
    margin: 20px 0 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 40px;
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

/* Login form binnen #login - gecentreerd */
.login #login > * {
    max-width: 400px;
    width: 100%;
}

/* MS Logo rechts - rechterhelft, 100px groter */
.login:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-size: 300px auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

/* Form styling */
.login form {
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    width: 100%;
}

/* Site logo */
.login #login h1 {
    text-align: center;
    background: transparent;
    margin-bottom: 30px;
}

.login #login h1 a {
    display: block;
    width: 280px;
    height: 80px;
    margin: 0 auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -9999px;
    border-radius: 0;
}

/* Labels */
.login label {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0D0401;
    display: block;
    margin-bottom: 8px;
}

/* Inputs - met subtiele box shadow */
.login input[type="text"],
.login input[type="password"],
.login .input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    margin: 0 0 16px 0;
    background: #F8F7F380;
    color: #0D0401;
    border: 1px solid #ff622930;
    transition: border 0.2s ease;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus,
.login .input:focus {
    box-shadow:none!important;
    border: 1px solid #ff6229!important;
}

.login input[type="text"]:hover,
.login input[type="password"]:hover,
.login .input:hover {
    box-shadow:none!important;
    border: 1px solid #ff622980;
}

/* Password wrapper */
.login .user-pass-wrap {
    position: relative;
    margin-bottom: 16px;
}

.login .wp-pwd {
    position: relative;
}

/* Password visibility button */
.login .button.wp-hide-pw {
    background: #ff6229;
    border: none;
    border-radius: 0 25px 25px 0;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    height: 54px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login .button.wp-hide-pw .dashicons {
    font-size: 16px;
    margin: 0;
    top: 0.1em;
}

.login .button.wp-hide-pw:focus, .login .button.wp-hide-pw:hover
 {
    background: #ff6229;
    border-color: #3582c4;
    box-shadow: none;
    outline: 0px solid transparent;
}

/* Submit button - met spacing en uppercase */
.login .button-primary {
    width: 100%;
    padding: 16px 30px;
    margin-top: 10px;
    background: #ff6229;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height:1em;
    cursor: pointer;
}

.login .button-primary:hover,
.login .button-primary:focus {
    background: #ff6229;
}

/* Remember me */
.login .forgetmenot {
    margin: 16px 0;
}

.login .forgetmenot label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    display: inline;
    margin-left: 8px;
    color: #0D0401;
}

/* Links */
.login #nav,
.login #backtoblog,
.login .privacy-policy-page-link {
    text-align: center;
    margin: 8px 0;
}

.login #nav a,
.login #backtoblog a,
.login .privacy-policy-page-link a {
    color: #0D0401;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.login #nav a:hover,
.login #backtoblog a:hover,
.login .privacy-policy-page-link a:hover {
    color: #ff6229;
}

/* Language switcher verbergen */
.login .language-switcher {
    display: none;
}

/* Mobile aanpassingen */
@media (max-width: 1024px) {
    .login {
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding: 20px;
    }
    
    .login #login {
        width: 90%;
        height:575px;
        max-width: 400px;
        margin: 0;
        padding: 30px 20px;
        border-radius: 25px;
        box-shadow: 0 20px 40px rgba(39, 39, 39, 0.1);
    }
    
    .login:after {
        position: fixed;
        top: 30px;
        right: 30px;
        width: 150px;
        height: 60px;
        background-size: 150px auto;
    }
}


@media screen and (max-width: 850px) {
    .login.js {
    margin-top:70px;
}
    .login #login {
        height:611px;
    }
    
    .login:after {
        position: fixed;
        top: 15px;
        right: 20px;
    }
}
    
    