body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1600px;
    min-height: 100vh;
    position: relative;
}

.left-section {
    flex: 1;
    text-align: center;
}

.main-logo {
    width: 350px;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.right-section {
    flex: 1;
    max-width: 420px;
    margin-right: 150px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.right-section h2 {
    font-weight: 700;
    color: #1b3a5c;
    letter-spacing: 1px;
}

.subtext {
    font-size: 13px;
}

.form-control {
    border-radius: 30px;
    padding-left: 15px;
    height: 45px;
}

.input-group-text {
    border-radius: 30px 0 0 30px;
    background-color: transparent;
    border-right: none;
}

.btn-login {
    background-color: #850038;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #a30045;
}

.company-logo {
    position: absolute;
    top: 30px;
    right: 70px;
    width: 110px;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 83%;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    padding: 0 5%;
}

footer a {
    text-decoration: none;
    color: #850038;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .container-login {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 10px;
    }

    .left-section img {
        width: 220px;
        margin-bottom: 25px;
    }

    .right-section {
        margin: 0;
        width: 100%;
        max-width: 400px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    }

    .company-logo {
        position: static;
        margin-bottom: 15px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 12px;
        width: 100%;
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .main-logo {
        width: 180px;
    }

    .right-section {
        padding: 20px;
    }

    .btn-login {
        font-size: 14px;
    }
}
