.loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3A307F;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin-right: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.response-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}
.response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Success container styles */
.success-container {
    text-align: center;
    padding: 20px;
    background-color: #d4edda;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
    color: #155724;
}
.success-message {
    font-size: 18px;
    font-weight: bold;
}

.iti {
    width: 100%;
    display: block;
}
.iti__flag-container {
    z-index: 99;
}