*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: rgba(247, 245, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh; 
    font-family: system-ui, sans-serif;
}

#container-login{
    width: 90%;
    max-width: 480px;
    height: 524px;
    padding: 44px;
    margin-top: 100px;
    border-radius: 12px;
    background-color: #FFF;
    box-shadow: rgba(109, 74, 255, 0.16) 0px 8px 24px 0px;
}

p{
    color: rgb(92, 89, 88);
}

#container-input{
    margin-top: 40px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 20px;
}

label{
    display: block;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
}
label:not(:first-child){
margin-top: 30px;
}


input[type="text"],
input[type="password"]{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;;
    transition: border-color .15s ease-in-out;
}


input[type="text"]:focus,
input[type="password"]:focus{
    color:#212529;;
    background-color:#fff;
    border-color:#86b7fe;
    outline:0;
    box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}

#btn-submit{
    width: 100%;
    height: 40px;
    margin-top: 40px;
    color: #FFF;
    font-size: 0.96rem;
    padding: 0 25px;
    border: none;
    border-radius: 0.5rem;
    background-color: rgb(26 86 219 / 1);
    cursor: pointer;
}

#btn-submit:hover{
    background-color: rgb(30 66 159/ 1);
}

#register{
    margin-top: 20px;
    text-align: center;
}

a{
    color: rgb(109, 74, 255);
}

a:hover{
    text-decoration: none;
}

#forgot-password{
    text-align: center;
    margin-top: 10px;
} 