* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
   
}
body{
    background: url(login\ background.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}
.container{
   min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
form{
    background: transparent;
    border-radius: 16px ;
    box-shadow: 0px 3px 15px rgba(204, 207, 212, 0.8);
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}
input{
    margin: 10px 0 10px;
    border: transparent;
    height: 30px;
    border-radius: 5px;
}
textarea{
    margin: 10px 0 10px;
    border: 1px solid black;
    resize: none;
    border-radius: 5px;
}
form h3{
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: 'Times New Roman', Times, serif;
}
button {
    background-color: rgb(131,58,180);
    border: none;
    padding: auto;
    height: 30px;
    width: 40%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 150px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0px 3px 15px rgba(204, 207, 212, 0.2);
}

button:active{
   background-color: rgb(72, 186, 30);
   border: none;
}