```css

/* ==================================================
   RUHUNU FARMS LOGIN & FORGOT PASSWORD
================================================== */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* BACKGROUND */

body {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, .45), transparent 40%), radial-gradient(circle at bottom center, rgba(255, 255, 255, .35), transparent 35%), #f4c400;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


/* PAGE */

.main-viewport {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}


/* MAIN CARD */
/* ONLY EXPANDED */

.glass-container {
    width: 100%;
    max-width: 1200px;
    min-height: 560px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}


/* LEFT SIDE */

.left-branding-panel {
    width: 45%;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)), url('/img/NewFolder1/login-chicken.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


/* MOVED DOWN */

.branding-content {
    padding: 50px;
    padding-top: 95px;
}


/* LEFT TITLE */

.main-title {
    margin: 0;
    color: white;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}


.main-title span {
    display: block;
    margin-top: 10px;
    color: #f4c400;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}


.main-subtitle {
    margin-top: 22px;
    max-width: 380px;
    color: rgba(255, 255, 255, .95);
    font-size: 15px;
    line-height: 1.8;
}



/* RIGHT SIDE */

.right-auth-panel {
    width: 55%;
    background: white;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* TITLE */
/* SAME FONT SIZE */

.welcome-text h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    white-space: normal;
}


.welcome-text span {
    color: #f4c400;
}


.welcome-text p {
    margin-top: 14px;
    margin-bottom: 35px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}



/* INPUT AREA */

.input-block {
    margin-bottom: 22px;
}


.input-block label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}


.input-wrapper {
    position: relative;
}


.input-wrapper input {
    width: 100%;
    height: 56px;
    border: 1px solid #d7dee8;
    border-radius: 14px;
    background: #eef3fb;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 15px;
    box-sizing: border-box;
    transition: .3s;
}


.input-wrapper input:focus {
    outline: none;
    border-color: #f4c400;
    box-shadow: 0 0 0 4px rgba(244, 196, 0, .15);
}


.input-wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}


.input-wrapper i:first-child {
    left: 18px;
}


.input-wrapper i:last-child {
    right: 18px;
}



/* REMEMBER */

.form-options {
    margin-top: 5px;
    margin-bottom: 25px;
}


.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}


.remember-me input {
    width: 16px;
    height: 16px;
}



/* BUTTONS */

.login-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px;
    width: 100%;
}



/* SCAN */

.btn-scan {
    flex: 1 !important;
    height: 56px;
    border: none;
    background: #f4c400;
    color: #111827;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    box-sizing: border-box;
    white-space: nowrap;
}


.btn-scan:hover,
.btn-scan:focus,
.btn-scan:active {
    background: #e4b700;
    outline: none;
}



/* LOGIN */

.btn-sign-in {
    flex: 1 !important;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #f4c400;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
    white-space: nowrap;
}


.btn-sign-in:hover,
.btn-sign-in:focus,
.btn-sign-in:active {
    background: #e4b700;
    outline: none;
}



/* FORGOT */

.auth-footer-links {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #ececec;
    text-align: center;
}


.auth-footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}


.auth-footer-links a:hover {
    color: #111827;
}



/* VALIDATION */

.validation-msg {
    color: #dc2626;
    margin-bottom: 15px;
}



/* MODAL */

.modal-content {
    border: none;
    border-radius: 20px;
}


.modal-header {
    border-bottom: 1px solid #ececec;
}


#preview {
    width: 100%;
    border-radius: 12px;
}



/* TABLET / IPAD PRO */

@media(max-width:1024px) {
    .right-auth-panel {
        padding: 40px 40px;
    }

    .welcome-text h2 {
        font-size: 38px;
    }
}

@media(max-width:991px) {

    .glass-container {
        width: 100%;
        max-width: 95%;
        flex-direction: column;
    }

    .left-branding-panel {
        width: 100%;
        min-height: 280px;
    }

    .right-auth-panel {
        width: 100%;
    }

    .welcome-text h2 {
        font-size: 36px;
    }

    .main-title {
        font-size: 30px;
    }

    .main-title span {
        font-size: 46px;
    }
}


/* MOBILE */

@media(max-width:768px) {

    .main-viewport {
        padding: 15px;
    }

    .branding-content {
        padding: 35px;
        padding-top: 50px;
    }

    .right-auth-panel {
        padding: 30px 20px;
    }

    .login-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
    }

    .btn-scan {
        flex: 1 !important;
        padding: 0 10px;
        font-size: 16px;
        height: 50px;
        white-space: nowrap;
    }

    .btn-sign-in {
        flex: 1 !important;
        padding: 0 10px;
        font-size: 16px;
        height: 50px;
        white-space: nowrap;
    }

    .input-wrapper input {
        height: 50px;
        font-size: 14px;
    }

    .welcome-text h2 {
        font-size: 30px;
    }

    .welcome-text p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .main-title {
        font-size: 26px;
    }

    .main-title span {
        font-size: 36px;
    }

    .main-subtitle {
        font-size: 14px;
    }
}

/* ==================================================
   RESPONSIVE SCROLL & BACKGROUND FIXES
================================================== */
@media (max-width: 1024px) {
    /* 1. Prevent body height lock so page can scroll naturally */
    html, body, .wrapper {
        height: auto !important;
        min-height: 100vh !important;
    }

    /* 2. Apply desktop gradient to body so it stretches correctly on mobile */
    body {
        background-color: #F4C400 !important;
        background-image: radial-gradient(at 0% 0%, #E6B800 0px, transparent 50%),
                          radial-gradient(at 100% 0%, #FFD700 0px, transparent 50%),
                          radial-gradient(at 100% 100%, #FFF9E1 0px, transparent 50%),
                          radial-gradient(at 0% 100%, #FFDB58 0px, transparent 50%),
                          radial-gradient(at 50% 50%, #FFFDF2 0px, transparent 50%) !important;
        background-size: 200% 200% !important;
        animation: meshFlow 15s ease infinite !important;
    }

    /* 3. Prevent content-wrapper from clipping the top of main-viewport */
    .content-wrapper {
        height: auto !important;
        min-height: 100vh !important;
        align-items: stretch !important;
        background: transparent !important;
    }

    /* 4. Allow natural scrolling for main-viewport */
    .main-viewport {
        height: auto !important;
        min-height: 100vh !important;
        align-items: flex-start !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* 5. Keep the card centered when there is space, but don't clip on overflow */
    .glass-container {
        margin: auto !important;
    }
}

/* VERY SMALL MOBILE */

@media(max-width:425px) {

    .branding-content {
        padding: 25px;
    }

    .right-auth-panel {
        padding: 25px 15px;
    }

    .welcome-text h2 {
        font-size: 26px;
    }

    .main-title {
        font-size: 22px;
    }

    .main-title span {
        font-size: 30px;
    }

    .btn-scan {
        font-size: 14px;
        gap: 4px;
        padding: 0 8px;
    }

    .btn-sign-in {
        font-size: 14px;
        padding: 0 8px;
    }
}

```