form {
    display: flex;
    flex-direction: column;
    max-width: 408px;
    margin: auto;
    gap: 8px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 4%;
}

label {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}
input, textarea {
    width: 100%;
    resize: none;
    outline: none;
    padding: 8px 16px;
    font-family: Arial;
    border-color: #808080;
    border-width: 1px;
}
input:hover, textarea:hover {
    border-color: #000;
}
input:active, textarea:active {
    border-color: #808080;
}

button {
    width: 95px;
    height: 40px;
    margin-top: 8px;
    padding: 8px 16px;
    background-color: #4E75FF;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 4%;
}
button:hover {
    background-color: #6C8CFF;
}