* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}
body {
    min-height: 100vh;
    
}
.page-bg {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white; 
    padding: 30px;
}
.login-card {
    width: 1100px;
    background: #fff;
    border-radius: 28px;
    display: flex;        
    overflow: hidden;
    border: 2px solid black;
}

.login-left {
    width: 50%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;  
}


.brand img {
    max-width: 150px;
    height: auto;   
    display: block;  
    margin-bottom: 20px; 
}

.brand {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.login-left h2 {
    font-size: 26px;
    margin-bottom: 8px;
}


.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 22px;
}



label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    color: #444;
}


input {
    width: 100%;
    padding: 13px 18px;
    border-radius: 30px;
    border: none;
    background: #f4f4f4;
    margin-bottom: 14px;
    outline: none;
    font-size: 14px;
}


.login-btn {
    margin-top: 10px;
    padding: 15px;
    border-radius: 30px;
    background: #00ABEA;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 97%;
}

/* SWITCH TEXT */
.switch {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
}

.switch a {
    color: #919cd5;
    text-decoration: none;
    font-weight: 500;
}

/* RIGHT */
.login-right {
    width: 50%;
    background: #30354c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-right img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-card {
        flex-direction: column;
        width: 100%;
    }

    .login-left,
    .login-right {
        width: 100%;
    }

    .login-right {
        padding: 40px;
    }
}



/* Hide right image from 480px to 899px */
@media (max-width: 899px) {
    .login-right {
        display: none;
    }

    .login-left {
        width: 100%;
    }
}
/* =========================================
   900px – 1130px layout (same side spacing)
========================================= */
@media (min-width: 900px) and (max-width: 1130px) {

    .login-card {
        width: 95%;
        height: auto;
        padding: 0;
    }

    .login-left,
    .login-right {
        width: 50%;
        padding: 40px;
    }

    .login-right img {
        max-width: 80%;
    }
}