main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: -4rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50vw;
    align-items: start;
    margin: 5rem;
    min-width: 300px;
}

.form-title {
    font-size: 28px;
    text-transform: uppercase;
}

input {
    width: 50vw;
    min-width: 300px;
    height: 44px;
    margin-top: 16px;
}

p {
    font-size: 18px;
    font-family: 'Sansation', sans-serif;
    line-height: 150%;
}

form button {
    width: 20vw;
    height: 40px;
    background-color: #0F1B1F;
    color: white;
    border-radius: 4px;
    margin-top: 16px;
    border: none;
    transition: all .3s ease-in-out;
    min-width: 100px;
}

form button:hover {
    background-color: #25292B;
    cursor: grab;
}

label {
    font-size: 16px;
    font-family: 'Sansation', sans-serif;
    font-weight: bold;
}

