/* ===== BASE ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5efe1;
}

/* PAGE WRAPPER */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== LOGIN CARD ===== */
.login-wrapper {
    display: flex;
    width: 90%;
    max-width: 950px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* BRAND SECTION */
.brand-section {
    flex: 1;
    background: linear-gradient(135deg, #ef9f37, #da542a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}

.brand-logo {
    width: 160px;
    z-index: 2;
}

.brand-bg-image {
    position: absolute;
    bottom: 0;
    width: 420px;
    opacity: 0.25;
}

/* FORM SECTION */
.form-section {
    flex: 1;
    background: #f5f0e1;
    padding: 3rem 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: #da542a;
    font-size: 1.6rem;
    font-weight: 700;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #555;
}

/* FORM */
.form-group {
    margin-bottom: 1.3rem;
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ef9f37;
    border-radius: 10px;
}

.input-field:focus {
    outline: none;
    border-color: #da542a;
    box-shadow: 0 0 0 3px rgba(218, 84, 42, 0.2);
}

/* BUTTON */
.btn-login {
    width: 100%;
    margin-top: 10px;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef9f37, #da542a);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* ===== FOOTER ===== */
.login-footer {
    max-width: 950px;
    margin: 22px auto 10px;
    text-align: center;
    font-size: 12.5px;
    color: #888;
}

.footer-links {
    margin: 6px 0;
}

.footer-links a {
    color: #e96a2c;
    font-weight: 500;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-payments img {
    height: 18px;
    margin: 0 6px;
    opacity: 0.7;
    /* filter: grayscale(100%); */
}

.footer-dev a {
    color: #e96a2c;
    font-weight: 600;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }

    .brand-bg-image {
        display: none;
    }
}
