@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
body{
    font-family: 'Plus Jakarta Sans', sans-serif;

}
.login-bg, .sign-up-bg{
    background-image: url('../img/logo/login-bg.png');
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    height: 100vh;
}
.login-sec{
    height: 100vh;
    overflow-y: scroll;
}
.login-bg h1, .sign-up-bg h1{
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 700;

}
.sign-up-bg p{
    font-weight: 400;
    font-size: 16px;
    color: #D9D9D9;
}
.btn-log-in, .btn-acc-create{
    background-color: #1D6D45;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 250ms;
    padding: 0.5rem 1rem !important;
    border: 1px solid #1D6D45;
}
.btn-log-in:hover,.btn-acc-create:hover{
    transform: translateY(-1px);
    background-color: #072b19;
    color: #FFFFFF;
    border: 1px solid #072b19;
}
.login-sec h1{
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    color: #1D6D45;
}
.login-sec p,.login-acc-hint span{
    color: #808080;
    font-size: 1rem;
}
.login-sec label{
    color: #52525C;
    font-size: 1rem;
    font-weight: 500;
}
.login-sec input::placeholder{
    color: #000000;
    opacity: 0.5;
    font-size: 1rem;
    font-weight: 500;
}
.login-sec .form-group .form-control{
    background: #FFFFFF;
    border: 2px solid #D9D9D9;
    border-radius: 8px;
}
#forget-pw, .sign-up-a, .term-a{
    font-weight: 500;
    font-size: 1rem;
    color: #1D6D45;
    margin-top: -0.8rem;
    transition: all 0.2s ease-out;
}
#forget-pw:hover, .sign-up-a:hover, .term-a:hover{
    color: #52525C;
}
.logo-white{
    display: none;
}
.logo-colorful{
    display: block;
}


@media screen and (max-width:585px) {
    .login-bg,.sign-up-bg{
        height: 100%;
    }
    .logo-white{
        display: flex;
    }
    .logo-colorful{
        display: none;
    }

}
