@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&display=swap');

*{
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.main{
    
    background: #f3f3f3;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.login{

    width: 90vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    }

form{
    width: 30%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    box-shadow: -2px 1px 60px#cccccc;

}

.textfield{  
    width: 100%;
    display: flex;
    flex-direction: inline;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;


}

form > h1{

    margin: 0 10% 10% 15%;




    



}

.textfield > i{
    font-size: 18pt;
}

.textfield > input{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #ffffff;
    color:black;
    font-size: 12pt;
    box-shadow: 0px 10px 40px -5px#bfbfbf;
    outline: none;
    margin-left: 15px;
    border: 2px solid transparent;

}

.textfield > input::placeholder{
    color: #808080
}
input:focus{
    border-color: #8c8c8c;
}

button{
    width: 60%;
    padding: 15px;
    margin: 5% 10% 0 17%;

    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    color: white;
    background: black;
    cursor:pointer;
    box-shadow: 0px 10px 40px -5px #bfbfbf;
}
button:hover{
    transition: background 1s;
    background: #595959;
}

