.elementor-182023 .elementor-element.elementor-element-db7eba3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-3px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-182023 .elementor-element.elementor-element-db7eba3:not(.elementor-motion-effects-element-type-background), .elementor-182023 .elementor-element.elementor-element-db7eba3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-1b29647 );}/* Hide legend */
.affwp-login-form fieldset legend {
    display: none;
}

/* Form container */
.affwp-login-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Field spacing */
.affwp-login-form p {
    margin-bottom: 20px;
}

/* Labels */
.affwp-login-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* Input fields */
.affwp-login-form input[type="text"],
.affwp-login-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,134,11,0.25);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.affwp-login-form input[type="text"]:focus,
.affwp-login-form input[type="password"]:focus {
    border-color: #B8860B;
    background: rgba(184,134,11,0.05);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.affwp-login-form input::placeholder {
    color: rgba(255,255,255,0.25);
}

/* Remember me checkbox */
.affwp-login-form .affwp-user-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}

.affwp-login-form .affwp-user-remember input[type="checkbox"] {
    accent-color: #B8860B;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Log In button */
.affwp-login-form input[type="submit"],
.affwp-login-form button[type="submit"] {
    display: block;
    width: auto;
    min-width: 240px;
    margin: 10px auto 0;
    padding: 16px 48px;
    background: #B8860B;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.affwp-login-form input[type="submit"]:hover,
.affwp-login-form button[type="submit"]:hover {
    background: #D4A017;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}

/* Lost password link */
.affwp-login-form .affwp-lost-password {
    text-align: center;
    margin-top: 16px;
}

.affwp-login-form .affwp-lost-password a {
    color: rgba(184,134,11,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.affwp-login-form .affwp-lost-password a:hover {
    color: #B8860B;
}

/* Error messages */
.affwp-login-form .affwp-errors,
.affwp-errors {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ff6b7a;
    margin-bottom: 20px;
    font-size: 14px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}