body {
    font-family: sans-serif;
}

* {
    box-sizing: border-box;
}

.submit-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.max1170 {
    margin: auto;
    max-width: 1170px;
}

.heading {
    font-size: 28px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.rectangle {
    display: flex;
    flex-direction: column;
}

.rectangle input,
.rectangle select {
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    border: 1px solid #9d9d9d;
    width: 300px;

    /* display: flex; */
}

/* select.country {
    width: 100%;
} */

.error-block {
    color: #ff0149;
    margin-top: 5px;
    margin-left: 4px;
    font-size: 12px;
    align-self: flex-start;
}

.submit-button {
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    margin-top: 10px;
    border-radius: 4px;
    background-color: rgb(13, 139, 13);
    cursor: pointer;
}

.success-toast {
    margin-top: 16px;
    color: green;
    font-size: 16px;
    text-align: center;
}

.error-toast {
    margin-top: 16px;
    color: red;
    font-size: 16px;
    text-align: center;
}

.success-toast-hide {
    display: none;
}

.error-toast-hide {
    display: none;
}