@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --login-bg: #ffffff;
    --title-bg: #004e9e;
    --button-bg: #004e9e;
    --light-pink: #004e9e;
    --image-bg: #004e9e;
}

body {
    height: 100vh;
    font-family: 'Frutiger LT Std', sans-serif;
    background-image: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
}

.login-container {
    height: 43.75em;
    width: 70em;
    margin: 6em auto;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.login-shadow {
    box-shadow: 1px 1px 50px #48529944;
}

.login-info-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 1.8rem;
    background-color: var(--login-bg);
}

.image-container {
    width: 50%;
    background-color: var(--image-bg);
    box-sizing: border-box;
    display: flex;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.center-img-bg {
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 491px;
    height: 252px;
    margin: auto;
}

.title {
    margin-top: 120px;
    text-transform: capitalize;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--title-bg);
}

.subtitle {
    text-transform: capitalize;
    font-size: 2.25rem;
    font-weight: bold;
    margin-right: 20px;
    margin-left: 20px;
}

.btn img {
    width: 17px;
    margin-right: 8px;
}

.btn {
    width: 80%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    border: none;
    border-radius: 50px;
    background-color: var(--button-bg);
    cursor: pointer;
    height: 3.125rem;
    font-size: 1em;
    margin-top: 60px;
}

.image-icon {
    display: none;
    margin-bottom: -80px;
}

.status-msg {
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
}

.footer-text {
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .login-container {
        width: 70%;
        margin-top: 3rem;
    }

    .login-info-container {
        width: 100%;
        border-radius: 5px;
    }

    .image-container {
        display: none;
    }

    .image-icon {
        display: block;
    }

    .subtitle {
        font-size: 1.25rem;
    }
    .btn {

        margin-top: 2px;
    }
}

@media screen and (max-width: 650px) {
    .login-container {
        width: 90%;
    }
}

@media screen and (max-width: 500px) {
    .login-container {
        height: 70%;
    }
}
