#community-registration-wrapper .alert{
    margin-bottom: 15px;
    max-width: 85%;
}

#community-registration-wrapper .checkbox-container{
    font-weight: 400;
    line-height: 23px;
}

#community-registration-wrapper form{
    max-width: 85%;
    color: #ffffff;
}

#community-registration-wrapper form label {
    font-weight: bold;
}

#community-registration-wrapper form input[type="text"],
#community-registration-wrapper form input[type="email"],
#community-registration-wrapper form input[type="date"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
}

#community-registration-wrapper form button{
    border: 1px solid #E0A414;
    color: #E0A414;
}

#community-registration-wrapper form button:hover, 
#community-registration-wrapper form button:active,
#community-registration-wrapper form button:focus{
    background-color: #E0A414;
    color: white;
}

#kowloon-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

#kowloon-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid #800020;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

