wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 25rem;
}
main {
    background-color: var(--grey-dark);
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0px 5px 40px 0px var(--primary);
    width: 80%;
}
h3 {
    margin-bottom: 1rem;
    margin-left: 0.5rem;
}

input {
    display: block;
    background-color: var(--black);
    color: var(--primary);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 0.75rem;
    width: 100%;
}
input::placeholder {
    color: var(----grey-dark);
}
input:focus {
    outline: none;
    border-bottom: 0.125rem solid var(--primary-dark);
}

button {
    display: block;
    background-color: var(--primary);
    color: var(--grey-dark);
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    width: 100%;
}
button:hover {
    background-color: var(--primary-dark);
    color: var(----grey-dark);
}

footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 0.75rem;
    color: var(--grey);
    width: 100%;
}
