.form-container {
    background-color: #f7c20a;
    /* Yellow background color to match the image */
    padding: 20px;
    border-radius: 10px;
}



.form-group {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 7px auto;
}

.label-input {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
}

.form-input {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.form-input[type="file"] {
    padding: 3px;
}




.button {
    display: block;
    text-decoration: none;
    font-size: 1em;
    line-height: 1;
    margin: 0;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    background: #0085ba;
    border-color: #0073aa #006799 #006799;
    box-shadow: 0 1px 0 #006799;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
    transition-duration: 0.1s;
}

.button:hover {
    background: #008ec2;
}

.button span {
    display: block;
    padding: 10px 20px;
}

.button-loading,
.button-loading:after {
    width: 2.1em;
    height: 2.1em;
    border-radius: 50%;
}

.button-loading {
    transition-property: width height padding box-shadow border-width background opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    background: transparent;
    box-shadow: 0 0 0 #006799;
    border-top: 4px solid #0073aa;
    border-right: 4px solid #BFE7F3;
    border-bottom: 4px solid #BFE7F3;
    border-left: 4px solid #BFE7F3;
    transform: translateZ(0);
    -webkit-animation: load8 1s infinite linear;
    animation: load8 1s infinite linear;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.button-loading span {
    display: none;
}

.button-loading:hover {
    background: transparent;
}

@-webkit-keyframes load8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.notify-alert-text p {
    font-family: sans-serif !important;
}