.centering-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centering-wrapper h3 {
    width: 408px;
}

#form {

}

#form textarea {
    resize: none;
}

#form textarea, input[type="text"], input[type="email"] {
    width: 408px;
    padding: 10px 16px;
    border-radius: 2px;
    border: solid 1px #b7babf;
    background-color: #ffffff;
    font-family: "Noto Regular";
    font-size: 13px;
    color: #2d313a;
}

#form textarea::placeholder, input[type="text"]::placeholder, input[type="email"]::placeholder {
    color: #8F9399;
}

#form textarea:hover, input[type="text"]:hover, input[type="email"]:hover {
    border-color: #0098db;
    outline: none;
}

#form textarea:focus, input[type="text"]:focus, input[type="email"]:focus {
    outline: none;
    border-color: #0098db;
}

.control-group {
    margin-bottom: 32px;
}

.control-group label {
    font-family: "Noto Semibold";
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 8px;
}

.control-group label.inline-label {
    font-family: "Noto Regular";
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 0;
    vertical-align: top;
}

.control-group label.inline-label input {
    vertical-align: top;
    margin: 2px 4px 0 0;
}

.btn-blue {
    background: #0098db;
    padding: 10px 32px;
    font-family: "Noto Semibold";
    font-size: 13px;
    text-transform: uppercase;
    color: white;
    box-shadow: none;
    outline: none;
    border: none;
    width: 100%;
}

.btn-blue:hover,
.btn-blue:focus {
    background: #008ac7;
    color: white;
    outline: none;
}

.btn-blue:active {
    background: #0e6ea8;
    color: white;
}

.btn-blue:disabled {
    background: #EBEBE4;
}

.submit-group {
    width: 100%;
}

.toast {
    margin: 8px 0 0;
    display: none;
    grid-template-columns: 1fr;
    grid-column-gap: 4px;
    border-radius: 18px;
    padding: 8px 16px;
    line-height: 20px;
    font-family: "Noto Semibold";
    font-size: 13px;
    background: rgba(45, 49, 58, 0.9);
    color: white;
    height: 36px;
}

.toast.show {
    display: grid;
}

.toast.failed {
    background: rgba(239, 78, 78, 0.9);
}

.toast-container {
    width: 100%;
    position: relative;
    height: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.help-block.error {
    margin-bottom: 5px;
}