form {
    max-width: 440px;
}

form .form-group {
    margin-bottom: 14px;
}

form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

form input[type="email"],
form input[type="password"],
form input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(16, 16, 16, 0.16);
    border-radius: 14px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.75);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

form input:focus {
    outline: none;
    border-color: rgba(217, 98, 58, 0.65);
    box-shadow: 0 0 0 4px rgba(217, 98, 58, 0.18);
    background: rgba(255, 255, 255, 0.95);
}

form .form-help {
    color: #5f5f5f;
    display: block;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
}

form button[type="submit"] {
    width: 100%;
    margin-top: 6px;
}
