

.form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
}

.form-label {
    display: inline-block;
    width: 100%;

}

.form-input {
    width: 100%;
    border: none;
    border: 2px solid transparent;
    padding: 16px 30px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.16;
    background-color: #fff;
    border-radius: 6px;
    color: #000;

}

.form .btn {
    border-radius: 6px;
    background-color: #20497e;
    font-weight: 600;
    font-size: 24px;
    color: white;
    width: 100%;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.form .btn:hover {
    background-color: #fff;
    color: #000;

}