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

:root {
    --login-bg: #F5F7FA;
    --title-bg: #003478;
    --button-bg: #003478;
    --light-pink: #003478;
    --image-bg: #D3DCE8;
}

/* #D3DCE8 */
body {
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    /* background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); */
    /* background-image: linear-gradient(to top, #D3DCE8 0%, #003478 100%); */
    background-image: linear-gradient(to top, #00224F 0%, #00224F 100%);
}

.login-container {
    height: 30em;
    width: 60em;
    margin: 4em auto;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

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

.image-container {
    padding: 2rem;
    width: 50%;
    background-color: var(--image-bg);
    box-sizing: border-box;
    
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    text-transform: capitalize;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--title-bg);
}

.social-login {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* cursor: pointer; */
}

.social-login-element {
    width: 60%;
    /* height: 3.75rem; */
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 5px;
    /* border: 1px solid var(--button-bg); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-login-element img {
    width: 100%;
    position: relative;
    top: 0;
}

.social-login-element:hover {
    background-color: #fff;
}

.login-info-container>p {
    font-size: 1.25em;
    margin-top: 1.5em;
}

.inputs-container {
    height: 35%;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.input,
.btn {
    width: 90%;
    height: 3.125rem;
    font-size: 1em;
    font-weight: bold;
}

.input {
    padding-left: 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.input:hover {
    border: 2px solid var(--button-bg);
}

.btn {
    width: 80%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: var(--button-bg);
    cursor: pointer;
}

.inputs-container p {
    margin: 0;
}

.span {
    color: var(--light-pink);
    font-weight: 600;
    cursor: pointer;
}

@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;
    }

    .social-login {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .social-login-element img {
        width: 50%;
        position: relative;
        top: 0;
    }
}

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

    .social-login-element img {
        width: 60%;
        position: relative;
        top: 0;
    }
}

@media screen and (max-width: 500px) {
    .login-container {
        height: 35em;
        /* height: 90%; */
    }

    .social-login {
        flex-direction: column;
        align-items: center;
        height: 30%;
    }

    .login-info-container>p {
        margin: 0;
    }

    .social-login-element img {
        width: 100%;
        position: relative;
        top: 0;
    }
}
/* 
.bootstrap-switch-large{
    width: 200px;
} */