*{
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

body {
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #2e21ac, #e54c9c);
    letter-spacing: 1.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    border-radius: 1rem;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 15px 10px rgba(0,0,0,0.3);
}

.input-wrapper{
    display: flex;
    flex-direction: column;
}

.input-wrapper:nth-of-type(2){
    margin-block: 1.25rem 2rem;
}

label{
    margin-bottom: 0.25rem;
    font-weight: bold;
}

input{
    border-radius: 0.25rem;
    padding: 0.25rem;
}

.button-wrapper{
    text-align: center;
}

button{
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    background-image: linear-gradient(to bottom right, #2e21ac, #e54c9c);
    color: #fff;
    letter-spacing: 1.5px;
    font-weight: bold;
    cursor: pointer;
}