﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #fff;
    font-family: 'angie-sans', 'sans-serif', Helvetica
}

.login-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-header {
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    background-color: #f2f2f2;
    border-bottom: 1px solid #d6d2ca;
}

.logo {
    height: 40px;
    width: 158px;
}

.login-body {
    flex: 1;
    display: flex;
    flex-direction: row-reverse; /* keeps form on the left */
    width: 100%;
    min-height: 100%;
}


.login-image {
    flex: 1;
    background-image: url('../../assets/img/newportal/loginpic2.jpg');
    background-size: cover;
    background-position: center;
}


.login-form {
    flex: 1;
    max-width: 500px; /* Optional: keep it readable */
    padding: 60px 48px 60px 60px; /* Left-heavy padding */
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


    .login-form h1 {
        font-size: 32px;
        margin-bottom: 8px;
        color: #001b39;
    }

    .login-form p {
        font-size: 14px;
        color: #001b39;
        margin-bottom: 16px;
    }

    .login-form label {
        font-weight: 500;
        font-size: 14px;
        color: #001b39;
    }

    .login-form input {
        padding: 14px;
        border-radius: 6px;
        border: 1.3px solid #d6d2ca;
        font-size: 14px;
        font-family: inherit;
        margin-bottom: 12px;
    }

.forgot-password {
    font-size: 14px;
    text-align: right;
    color: #257de3;
    text-decoration: underline;
    cursor: pointer;
}

.login-form button {
    margin-top: 12px;
    padding: 16px;
    background-color: #c6e4cf;
    border: 2px solid #333f48;
    border-radius: 999px;
    font-size: 16px;
    font-weight: bold;
    color: #001b39;
    cursor: pointer;
}

.login-form .signup {
    text-align: center;
    font-size: 14px;
}

    .login-form .signup a {
        color: #257de3;
        text-decoration: underline;
    }

/* 🌐 Responsive (Tablet and below) */
@media (max-width: 768px) {
    .login-body {
        flex-direction: column;
    }

    .login-image {
        width: 100%;
        height: 40vh;
        min-height: 120px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .login-form {
        padding: 32px 24px;
    }

        .login-form h1 {
            font-size: 28px;
        }

        .login-form input {
            font-size: 14px;
        }

        .login-form button {
            font-size: 14px;
        }
}
