
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

    body {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        background-image: url(../images/bg.png);
    }

    /* --- FIXED PURE SINE RED LAYERED WAVE SYSTEM --- */
    .wave-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 28vh; 
        background: transparent;
        z-index: 1;
        pointer-events: none;
    }

    .wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%; 
        height: 100%;
        background-repeat: repeat-x;
        background-size: 50% 100%;
        transform: translate3d(0, 0, 0);
    }

    /* Front Wave - Fluid, Continuous Smooth Sine Curve */
    .wave-1 {
        opacity: 0.85;
        /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C150,60 150,20 300,20 C450,20 450,100 600,100 C750,100 750,60 900,60 C1050,60 1050,60 1200,60 L1200,120 L0,120 Z" fill="%23e53e3e"/></svg>'); */
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,80 C150,80 150,30 300,30 C450,30 450,90 600,90 C750,90 750,40 900,40 C1050,40 1050,80 1200,80 L1200,120 L0,120 Z" fill="%23FF0000" fill-opacity="0.8"/></svg>');
        animation: waveMotion 45s linear infinite; 
        z-index: 4;
    }

    /* Middle Wave - Adjusted control handles to prevent any point formations */
    .wave-2 {
        opacity: 0.45;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,80 C150,80 150,30 300,30 C450,30 450,90 600,90 C750,90 750,40 900,40 C1050,40 1050,80 1200,80 L1200,120 L0,120 Z" fill="%23fc8181"/></svg>');
        animation: waveMotionReverse 35s linear infinite; 
        z-index: 3;
    }

    /* Back Wave - Low impact deep canvas rolling curve */
    .wave-3 {
        opacity: 0.25;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,40 C150,40 150,10 300,10 C450,10 450,70 600,70 C750,70 750,20 900,20 C1050,20 1050,40 1200,40 L1200,120 L0,120 Z" fill="%239b2c2c"/></svg>');
        animation: waveMotion 25s linear infinite; 
        z-index: 2;
    }

    @keyframes waveMotion {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes waveMotionReverse {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    /* --- LOGIN CARD CONTAINER --- */
    .window-container {
        width: 100%;
        max-width: 650px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(229, 62, 62, 0.12);
        overflow: hidden;
        z-index: 10;
        margin: 20px;
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .card-body {
        padding: 40px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-section {
        text-align: center;
        margin-bottom: 35px;
    }

    .logo-container {
        margin-bottom: 15px;
    }
    
    .logo-container img {
        height: 200px; 
        width: auto;
        object-fit: contain;
    }

    .header-section h1 {
        color: #e53e3e; 
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 1.4;
    }

    /* Form Layout */
    .form-container {
        width: 100%;
        max-width: 360px;
    }

    .input-group {
        position: relative;
        margin-bottom: 25px;
    }

    .input-group label.field-label {
        display: block;
        color: #a0aec0;
        font-size: 0.8rem;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .input-group input {
        width: 100%;
        border: none;
        border-bottom: 2px solid #cbd5e1;
        padding: 8px 30px 8px 0;
        font-size: 0.95rem;
        color: #334155;
        outline: none;
        transition: border-color 0.3s;
        background: transparent;
    }

    .input-group input:focus {
        border-bottom-color: #fc8181; 
    }

    /* Laravel Framework Error Handling Styles */
    .has-error input {
        border-bottom-color: #9b2c2c !important;
    }
    
    .control-label {
        display: block;
        color: #9b2c2c;
        font-size: 0.75rem;
        margin-bottom: 4px;
        font-weight: 500;
    }
    .control-label i {
        margin-right: 4px;
    }

    /* Red Accent Submit Button */
    .submit-btn {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 30px;
        background: linear-gradient(90deg, #fc8181 0%, #e53e3e 100%);
        color: white;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.25);
        transition: opacity 0.2s, transform 0.2s;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .submit-btn:hover {
        transform: translateY(-1px);
        opacity: 0.95;
    }

    /* Red Accent FAQ Secondary Button */
    .faq-btn {
        display: block;
        width: 100%;
        padding: 12px;
        border: 2px solid #e53e3e;
        border-radius: 30px;
        background: transparent;
        color: #e53e3e;
        font-size: 0.95rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

    .faq-btn:hover {
        background: #e53e3e;
        color: #ffffff;
    }
