@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    background: #E8F3EF;
    font-family: 'Inter', sans-serif;
}

.login {
    /* display: flex; */
    /* flex-direction: row; */
    min-height: 100vh;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* .login .box-form {
    min-width: 35%;
} */

.login .box-form .card {
    border-radius: 30px;
    border: none;
    padding: 1.5rem;
}

.login .box-form .card .card-body h3 {
    color: #0F5765;
    font-weight: 700;
    font-size: 31px;
    margin-bottom: 0;
}

.login .box-form .card .card-body p {
    color: #47BE79;
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    margin-bottom: 2rem;
}

.login .box-form .card .card-body .input-group.custom {
    border: 1px solid #47BE79;
    border-radius: 50px;
}

.login .box-form .card .card-body .input-group i {
    color: #47BE79;
}

.login .box-form .card .card-body .input-group .form-control {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border: none;
    color: #47BE79;
}

.login .box-form .card .card-body .input-group .input-group-prepend .input-group-text {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-left: 1rem;
    background-color: unset;
    border: none;
}

.login .box-form .card .card-body .input-group.custom-checkbox .form-control {
    height: 15px;
    margin: 0;
}

.login .box-form .card .card-body .input-group.custom-checkbox label,
.login .box-form .card .card-body a {
    color: #47BE79;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
    margin-bottom: 0;
}

.login .logo {
    text-align: center;
}


.login .logo img {
    width: 100%;
    margin-top: 2rem;
}

.btn-custom-green {
    background-color: #0F5765;
    border-radius: 100px;
    color: white !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 90%;
    }

    .login .box-form .card .card-body h3 {
        font-size: 29px;
    }

    .login .box-form .card .card-body p {
        font-size: 14px;
    }
}