@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&family=Fraunces:opsz,wght@9..144,700;9..144,900&family=Poppins:wght@400;500;600;700&display=swap");

/* font-family: 'Barlow', sans-serif;
font-family: 'Fraunces', serif;
font-family: 'Poppins', sans-serif; */

* {
    font-family: "Poppins", sans-serif;
}

.login {
    height: 100vh;
    display: flex;
    align-items: center;
}

.header {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #3e444a;
}

.header p {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #6c757d;
    margin-bottom: 50px;
}

.loginForm input {
    width: 100%;
    height: 56px;
    background: #ffffff;
    border: 1px solid #d8dde5;
    border-radius: 4px;
    margin-top: 20px;
}

.remember {
    width: 100%;
    height: 24px;
    background: #ffffff;
    margin-top: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #3e444a;
}

.signin {
    box-sizing: border-box;
    width: 100%;
    height: 58px;
    top: calc(50% - 58px / 2 - 16px);
    background: #c0e0f1;
    border: 1px solid #c0e0f1;
    border-radius: 4.8px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #014f77;
}

a.text-decoration-none {
    color: rgba(2, 132, 199, 1);
}

.loginRight {
    width: 75%;
    height: 100%;
}

.loginRight h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    color: #000000;
    margin-top: -110px;
    margin-left: 50px;
}

.loginRight p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #5a5858;
    margin-left: 50px;
}

@media screen and (max-width: 767.9px) {
    .loginRight {
        display: none;
    }
    .loginLeft {
        margin: auto;
    }
    .loginForm input {
        background: #ffffff;
        border: 1px solid #d8dde5;
        border-radius: 4px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 445px) {
    .loginForm input {
        width: 150%;
        margin-left: -50px;
    }
    .remember {
        width: 150%;
        margin-left: -50px;
    }
    .signin {
        width: 150%;
        margin-left: -50px;
    }
    a.text-decoration-none {
        margin-left: -50px;
    }
}

@media screen and (max-width: 350px) {
    .loginForm input {
        width: 150%;
        margin-left: -40px;
    }
    .remember {
        width: 150%;
        margin-left: -40px;
    }
    .signin {
        width: 150%;
        margin-left: -40px;
    }
    a.text-decoration-none {
        margin-left: -40px;
    }
}

@media screen and (max-width: 294px) {
    a.text-decoration-none {
        position: absolute;
    }
}
