/* CF4VN White Style Auth Forms - Override */
.auth-form-container {
    background: #ffffff !important;
    border: none !important;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #999;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.close-modal-btn:hover {
    color: #333;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-form-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: none;
    letter-spacing: 0.5px;
    margin: 0;
}

.auth-form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
}

.auth-form-footer p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.auth-form-footer a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.auth-form-footer a:hover {
    color: #ff8800;
    text-decoration: underline;
}

/* White form inputs */
#login input,
#register input {
    width: 100% !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    margin-bottom: 12px !important;
    height: auto !important;
    font-size: 14px !important;
}

#login input:focus,
#register input:focus {
    border-color: #ff6600 !important;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1) !important;
    outline: none !important;
    background: #fff !important;
}

#login input::placeholder,
#register input::placeholder {
    color: #999 !important;
}

#login button.login,
#register button.login {
    width: 100% !important;
    height: 48px !important;
    margin: 15px 0 0 0 !important;
    background: #ff6600 !important;
    color: #fff !important;
    border: none !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#login button.login:hover,
#register button.login:hover {
    background: #ff8800 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

#login .footer,
#register .footer {
    color: #333 !important;
}

#login .footer a,
#register .footer a {
    color: #ff6600 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .auth-form-container {
        padding: 30px 25px;
        max-width: 100%;
    }

    .auth-form-title {
        font-size: 15px;
    }
}
/* Auth Modal Functional Buttons */
.button-functional {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.button-functional .item {
    flex: 1;
    min-width: 120px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 10px !important;
    font-size: 13px !important;
    height: auto !important;
    margin: 0 !important;
    width: auto !important;
}

@media (max-width: 480px) {
    .button-functional .item {
        flex: 1 1 100%;
    }
}
