.form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
}

.form > *:not([style*="none"]) {
    margin-bottom: 10px;
}

.send-button {
    border-radius: 100px !important;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 auto;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}

.no-hint {
    margin-bottom: 29px !important;
}

.split-field {
    max-width: 49%;
}

.chip {
    padding: 5px 10px;
    border-radius: 16px;
    white-space: pre;
}

.chip-error {
    background-color: #FF3366 !important;
    color: #ffffff !important;
}

.chip-success {
    background-color: #C1D7E3 !important;
    color: #062275 !important;
}

.tos-wrapper {
    padding-bottom: 3px;
}

.tos-link {
    margin-left: 3px; 
    text-decoration: none;
}

@media (max-width: 800px) {
    .button-wrapper {
        justify-content: center;
    }

    .split-field {
        max-width: unset;
    }
}