﻿/* --- SPECIAL OFFERS LOGIN PAGE CONFIGURATION --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;0,900;1,400&display=swap');

.special-offers-login-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Premium split-screen layout framework */
    min-height: 100vh;
    width: 100%;
    background-color: #faf9f6; /* Elegant Alabaster White base tone */
    font-family: 'Playfair Display', serif;
}

/* --- HERO BRANDING SIDE (LEFT PANEL) --- */
.special-offers-login-hero-side {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 10%;
    /* Anchored directly onto center focal point of your imagery */
    background-image: url('/css/images/cafeSeflies1.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.special-offers-login-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Luxury vertical gradient masking from clear to deep matcha shadow protection layers */
    background: linear-gradient(to bottom, rgba(27, 67, 50, 0.1) 0%, rgba(27, 67, 50, 0.85) 100%);
    z-index: 1;
}

.special-offers-login-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 520px;
}

.special-offers-login-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4af37; /* Champagne Gold Tint */
    display: block;
    margin-bottom: 15px;
}

.special-offers-login-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.special-offers-login-italic-pink {
    color: #ffb7c5; /* Sakura Pink Accent styling color */
    font-style: italic;
    font-weight: 400;
}

.special-offers-login-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e5efe9; /* Softened light matcha-tinted white text */
    margin: 0;
}

/* --- CARD FORM INPUTS SIDE (RIGHT PANEL) --- */
.special-offers-login-form-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 8%;
    position: relative;
}

.special-offers-login-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    padding: 50px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.12); /* Ultra-soft gold perimeter edge line */
    box-shadow: 0 15px 45px rgba(27, 67, 50, 0.03); /* Grounding drop shadow logic */
}

.special-offers-login-card-header {
    margin-bottom: 35px;
}

.special-offers-login-card-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1b4332; /* Deep Premium Matcha Green */
    margin: 0 0 10px 0;
}

.special-offers-login-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* --- INPUT FIELD SYSTEMS ARCHITECTURE --- */
.special-offers-login-form-element {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.special-offers-login-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.special-offers-login-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-offers-login-input-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1b4332;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-offers-login-forgot-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .special-offers-login-forgot-link:hover {
        color: #ffb7c5;
    }

.special-offers-login-field-wrapper {
    position: relative;
    width: 100%;
}

.special-offers-login-input-field {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 16px 20px;
    background: #fdfdfd;
    border: 1px solid #e0dfdb;
    border-radius: 12px;
    color: #1b4332;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    /* Active interaction input field visual metrics focus states */
    .special-offers-login-input-field:focus {
        outline: none;
        border-color: #1b4332;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.06);
    }

/* --- CHECKS & SWITCHES STYLING --- */
.special-offers-login-options-row {
    margin: 4px 0;
}

.special-offers-login-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555555;
    user-select: none;
    padding-left: 28px;
}

    /* Hide standard stock browser checkbox */
    .special-offers-login-checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Custom premium checkmark element box marker styling properties */
.special-offers-login-custom-checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1px solid #c0bfba;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.special-offers-login-checkbox-container:hover input ~ .special-offers-login-custom-checkmark {
    border-color: #1b4332;
}

.special-offers-login-checkbox-container input:checked ~ .special-offers-login-custom-checkmark {
    background-color: #1b4332;
    border-color: #1b4332;
}

/* Custom indicator icon inner logic graphic */
.special-offers-login-custom-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.special-offers-login-checkbox-container input:checked ~ .special-offers-login-custom-checkmark:after {
    display: block;
}

/* --- PRIMARY FORMS SUBMISSION BUTTON ACTION STRIPS --- */
.special-offers-login-submit-btn {
    width: 100%;
    background: #1b4332;
    color: #ffffff;
    border: 1px solid #1b4332;
    font-family: 'Inter', sans-serif;
    padding: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.15);
}

    .special-offers-login-submit-btn:hover {
        background: #ffb7c5; /* Sakura Pink Hover Fill Trigger */
        color: #1b4332;
        border-color: #ffb7c5;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 183, 197, 0.4);
    }

/* --- BOTTOM REGISTRATION STRIP FOOTER --- */
.special-offers-login-footer {
    margin-top: 35px;
    text-align: center;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 25px;
}

.special-offers-login-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}

.special-offers-login-register-link {
    color: #1b4332;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid #ffb7c5;
    transition: all 0.3s ease;
}

    .special-offers-login-register-link:hover {
        color: #ffb7c5;
        border-color: #1b4332;
    }

/* --- PREMIUM MOBILE RESPONSIVE ENGINE RULES --- */
@media (max-width: 992px) {
    .special-offers-login-container {
        grid-template-columns: 1fr; /* Drop split screen layouts seamlessly down on tablets/iPads */
    }

    /* Collapse background photo into a premium textured canvas overlay setup */
    .special-offers-login-hero-side {
        display: none; /* Conceals massive hero panel sections out of layout tracks gracefully */
    }

    .special-offers-login-form-side {
        padding: 80px 24px;
        background-image: radial-gradient(circle at 90% 10%, rgba(255, 183, 197, 0.1) 0%, transparent 40%), radial-gradient(circle at 10% 80%, rgba(45, 106, 79, 0.04) 0%, transparent 50%);
    }
}

@media (max-width: 480px) {
    .special-offers-login-card {
        padding: 30px 20px; /* Compress outer card paddings to fit narrow 320px phone glass spaces */
        border: none;
        box-shadow: none;
        background: transparent; /* Makes card sit completely flat on small phones for absolute minimalism */
    }

    .special-offers-login-form-side {
        padding: 40px 16px;
        align-items: flex-start; /* Better alignment control rules on micro devices */
    }
}
