@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Teko:wght@300..700&display=swap');



body{
    font-family: "Poppins", serif;
}

.login__img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.login__welcome{
    font-size: 28px;
    font-weight: 700;
    color: #1f2641;
}

.login__title{
    font-size: 32px;
    font-weight: 700;
    color: #1f2641;
}

.login__inputTitle{
    font-size: 16px;
    font-weight: 700;
    color: #1f2641;
}

.login__input input{
    width: 100%;
    height: 52px;
    border-bottom: 1px solid #B4BBD1;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: #1f2641;
    padding: 0px 16px;
}

.login__input input::placeholder{
    font-size: 14px;
    font-weight: 500;
    color: #B4BBD1;
}

.login__btn{
    width: 100%;
    height: 52px;
    background-color: #5e37ff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: grid;
    place-content: center;
    text-align: center;
}

@media only screen and (max-width: 440px) {
    .login__container{
        width: 100%;
    }
}