
/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&family=Oswald:wght@500&display=swap'); */

/* https://app.haikei.app/ */

*{
  box-sizing: border-box;
}

html, body, .wrapper{
    height: 100%;
}

body{
    display: grid;
    place-items: center;
    margin:0;
    padding: 0 24px;
    background-image: url("images/login-background-image.svg");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Ubuntu";
    color: #000;
    animation: rotate 6s infinite alternate linear;

}

.Login-card{
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 20px;
    padding: 20px 30px 44px;
    border-radius: 1.25rem;
    background: #fff;
    text-align: center;
}

.Login-card > h2{
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 12px;
}

.Login-card > h3{
    color: rgba(0, 0, 0, 0.38);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 30px;
}

.Login-form > h4{
    color: rgba(0, 0, 0, 0.38);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 30px;
}


.Login-form{
    width: 100%;
    margin: 0;
    display: grid;
    gap: 16px;
}



.Login-form > input, .Login-form > button{
    width: 100%;
    height: 50px;
} 

.Login-form > input {
    border: 2px solid #ebebeb;
    font-family: inherit;
    font-size: 15px;
    padding: 0 16px;
    border-radius: 1.25rem;
    transition: all 0.375s;
}

.Login-form > input:hover{
    border: 2px solid #10449A;
}

.form-item label:not(.checkboxLabel){
    display: inline-block;
    background-color: white;
}

/* .input-field input {
    max-width: 380px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    height: 55px;
    border-radius: 55px;    
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i{
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
} */

/* .input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
} */

/* .input-field input::placeholder{
    color: #aaa;
    font-weight: 500;
} */



.Login-form > button{
    cursor: pointer;
    width: 100%;
    padding: 0 16px;
    border-radius: 1.25rem;
    background: #216ce7;
    color: #f9f9f9;
    border: 0;
    font-family: inherit;
    font-size: 1 rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.375s;
}

.Login-form > button:hover{
    background: #10449A;

}

@keyframes rotate {
    100%{
        background-position: 15% 50%;
    }    
}

@media (width >= 500px) {
    body{
        padding: 0;
    }    
    .Login-card{
        margin: 0;
        width: 400px;
    }
}


