body {
    color: #373737;
    margin: 0;
    padding: 0;
    background: #fefaf6;
}

.title {
    margin-top: 20px;
}

.container {
    width: 600px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    margin: 0;
    position: absolute;
    background: #fefefe;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    box-shadow: 5px 10px 40px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.inner-container {
    width: 100%;
}

.bottom {
    text-align: center;
    max-width: 70%;
    position: relative;
    margin: 35px auto;
}

h2 {
    font-family: "Rokkitt", sans-serif;
    letter-spacing: 0.05em;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    margin: 0 auto 0.25em;
}
p {
    color: #777;
    letter-spacing: 0.1em;
    font-size: 16px;
    line-height: 1.4;
    margin: 0 auto 2em;
}

.buttons button {
    padding: 10px 30px;
    font-size: 20px;
    background-color: #01685e;
    border: 0;
    cursor: pointer;
    border-radius: 4px;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all 0.25s ease-in-out;
}

.buttons button:hover {
    background-color: #05564e;
}

.buttons button:focus {
    border: none;
    outline: 0;
}

@media (max-width: 699px) {
    .container {
        width: 90%;
    }
    .bottom {
        margin-top: 1em;
        max-width: 90%;
    }
}
@media (max-width: 399px) {
    .container {
        padding: 20px;
    }
    .bottom h2 {
        font-size: 24px;
    }
    .buttons {
        flex-direction: column;
    }
    .buttons button {
        margin-right: 0;
    }
}

.loading {
    z-index: 9;
    margin: 30px auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
    animation: spin 1.5s linear infinite;
}

.loading {
    border-bottom-color: #01685e;
}

@keyframes spin {
    from {transform: rotate(0);}
    to {transform: rotate(360deg);}
}

.form-container {
    max-width: 500px;
    padding: 40px 20px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    grid-gap: 30px;
    gap: 30px;
    grid-template-columns: repeat(1,1fr);
}

.email-input {
    border: 1px solid #01685e;
    background: #f9fafc;
    box-sizing: border-box;
    padding: 12px;
    line-height: normal;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.phone-number-input {
    border: 1px solid #01685e;
    background: #f9fafc;
    box-sizing: border-box;
    padding: 12px;
    line-height: normal;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.error-notice{
    margin:5px; /* Make sure to keep some distance from all sides */
}

.oaerror{
    width:80%;
    background-color: #ffffff;
    padding:20px;
    border:1px solid #eee;
    border-left-width:5px;
    border-radius: 3px;
    margin:10px auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.danger{
    border-left-color: #d9534f; /* Left side border color */
    background-color: rgba(217, 83, 79, 0.1); /*Same color as the left border with reduced alpha to 0.1*/
}

.danger strong{
    color:#d9534f;
}

.warning{
    border-left-color: #f0ad4e;
    background-color: rgba(240, 173, 78, 0.1);
}

.warning strong{
    color:#f0ad4e;
}

.info {
    border-left-color: #5bc0de;
    background-color: rgba(91, 192, 222, 0.1);
}

.info strong {
    color: #5bc0de;
}

.success {
    border-left-color: #2b542c;
    background-color: rgba(43, 84, 44, 0.1);
}

.success strong {
    color: #2b542c;
}
