:root {
     --red: #115272;
     --red-dark: #115272;
     --bg: #f0f0f0;
 }

 html,
 body {
     height: 100%;
     margin: 0;
     font-family: "Montserrat", system-ui, -apple-system, Arial, sans-serif;
 }

 body {
     min-height: 100vh;
     width: 100vw;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow-x: hidden;
     background: url('../img/updatedbg.png') center center/cover no-repeat fixed;
 }

 /* Stage: Increased height to allow a bigger card */
 .stage {
     min-height: 90vh;
     width: 80vw;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
     box-sizing: border-box;
     margin: auto;
 }

 .card {
     position: relative;
     width: 100%;
     max-width: 1100px;
     /* BIGGER HEIGHT: Changed from 100% to 85vh */
     height: 80vh; 
     min-height: 550px;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
     display: flex;
     align-items: stretch;
     justify-content: flex-start;
     background: #fff;
 }

/* Left Side: Brand Area centered */
.brand {
    position: relative;
    z-index: 2;
    flex: 1; /* Changed to flex: 1 to fill half the card and center properly */
    display: flex;
    flex-direction: column; 
    align-items: center;    /* Horizontal Center */
    justify-content: center; /* Vertical Center */
    padding: 40px;
}

/* Stacks the LGU2 and the Small Text */
.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;    
    text-align: center;
    width: 100%;
}

/* Container for LGU and the Big 2 */
.logo {
    display: flex;
    align-items: baseline; /* Keeps LGU and 2 aligned on the bottom */
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo .unit {
    font-weight: 800;
    font-size: 60px;
    color: #111;
    line-height: 1;
}

.big-two {
    font-weight: 900;
    font-size: 120px;
    color: var(--red);
    line-height: 0.8;
    margin: 0;
}

.logo-small {
    display: block;
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Right Side: Form Area */
.form-area {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--red); /* Fill the right side with your theme color */
    color: #fff;
    overflow-y: auto; 
}

 .form-box {
     width: 100%;
     max-width: 320px;
 }

/* ... Rest of your Input and Button CSS below ... */

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 5px;
    border-radius: 6px;
    border: 0;
    font-size: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    box-sizing: border-box; 
}

.btn-login {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 0;
    background: #fff;
    color: var(--red);
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}