/* =========================================================
   MOVDE – LOGIN LAYOUT
========================================================= */
body.page-template-page-login header,
body.page-template-page-login footer,
body.page-template-page-login .site-header,
body.page-template-page-login .site-footer,
body.page-template-page-login .page-header,
body.page-template-page-login h1,
body.page-template-page-login .entry-title {
    display: none !important;
}


/* Remove theme width constraints */
body.page-template-page-login .container,
body.page-template-page-login .wrap,
body.page-template-page-login .content-area,
body.page-template-page-login .site-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-template-page-login #wpadminbar {
    display: none;
}

/* -------------------------------------------------
   MAIN LAYOUT
-------------------------------------------------- */

html,
body {
    height: 100%;
}

body.page-template-page-login {
    margin: 0;
    background: #f7f6ef;
}

.movde-login {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* LEFT IMAGE – EXACT 50% */
.movde-login__left {
    width: 50vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* RIGHT FORM – EXACT 50% */
.movde-login__right {
    width: 50vw;
    height: 100vh;
    background: #f7f6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Login box */
.movde-login__box {
    width: 100%;
    max-width: 360px;
    text-align: center;
}

/* Logo */
.movde-login__logo {
    /* max-width: 180px; */
    /* margin: 0 auto 40px; */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ---------------------------------------------------------
   FORM
---------------------------------------------------------- */

.movde-login form {
    width: 100%;
}

.movde-login input[type="text"],
.movde-login input[type="email"],
.movde-login input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}


.movde-login input[type="text"]:focus,
.movde-login input[type="email"]:focus,
.movde-login input[type="password"]:focus {
    outline: none;
    border-color: #000;
}


/* Submit button */
.movde-login input[type="submit"] {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: 0;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.movde-login input[type="submit"]:hover {
    opacity: 0.85;
}

/* Forgot password */
.movde-login__forgot {
    margin-top: 12px;
    font-size: 13px;
}

.movde-login__forgot a {
    color: #666;
    text-decoration: none;
}

/* Register */
.movde-login__register {
    margin-top: 40px;
    text-align: center;
}

.movde-login__register p {
    margin-bottom: 10px;
    font-size: 14px;
}

.movde-login__register .btn-outline {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}
hr,#footer{
display:none;
}
/* ---------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 900px) {

    .movde-login {
        flex-direction: column;
    }

    .movde-login__left,
    .movde-login__right {
        width: 100vw;
        height: auto;
    }

    .movde-login__left {
        height: 240px;
    }

    .movde-login__right {
        height: calc(100vh - 240px);
    }
}


/* -------------------------------------------------
   AUTH TOGGLE
-------------------------------------------------- */

.movde-auth {
    display: none;
}

.movde-auth.is-active {
    display: block;
}

/* Register form buttons */
.movde-auth__actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.movde-auth__actions .btn-primary {
    flex: 1;
    padding: 12px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.movde-auth__actions .btn-outline {
    flex: 1;
}

/* =========================================================
   FLOATING LABELS – MOVDE
========================================================= */

.movde-field {
    position: relative;
    margin-bottom: 22px;
}

/* Input */
.movde-field input {
    width: 100%;
    height: 48px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
}

/* Label */
.movde-field label {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #f7f6ef;
    padding: 0 6px;
}

/* Focus or filled */
.movde-field input:focus + label,
.movde-field input:not(:placeholder-shown) + label,
.movde-field input:valid + label {
    top: -8px;
    font-size: 12px;
    color: #000;
}

/* Focus border */
.movde-field input:focus {
    outline: none;
    border-color: #000;
}


/* =========================================================
   SUCCESS STATE
========================================================= */

.movde-auth--success {
    text-align: center;
}

.movde-success__title {
    font-size: 16px;
    font-weight: 500;
    margin: 40px 0 24px;
}

.movde-success__text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
}


/* =========================================================
   FORM ERROR MESSAGE
========================================================= */

.movde-form-error {
    display: none;
    margin: 12px 0 20px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fdecea;
    color: #b42318;
    font-size: 13px;
    line-height: 1.4;
}

.movde-form-error.is-visible {
    display: block;
}

