#loadingScreen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.iti {
    width: 100%;
}

.iti__selected-country {
    width: 100px !important;
    background-color: #eee4e4;
    justify-content: center;
}

.iti__tel-input {
    padding-left: 110px !important;
}

.iti__flag {
    background-color: #fff;
}

.btn-primary {
    background-color: #c28565 !important;
    border: #c28565 !important;
    box-shadow: none;
    transition: all 200ms ease-in-out;
}

.btn-primary:hover {
    background-color: hsl(21, 43%, 50%) !important;
}

#registerInterestForm .error {
    color: #f32013 !important;
}
