* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0 0 30px 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}

.form-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555555;
    text-align: left;
}

.form-container input[type="text"],
.form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.form-container label input[type="checkbox"] {
    transform: scale(1.1);
    margin-right: 10px;
}


.form-container label input[type="checkbox"] {
    transform: scale(1.1);
    margin-right: 10px;
}

.form-container button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.form-container button:hover {
    background-color: #005bb5;
}

.form-container label input[type="checkbox"] {
    transform: scale(1.1);
    margin-right: 10px;
}


.form-container label input[type="checkbox"] {
    transform: scale(1.1);
    margin-right: 10px;
}

.form-container button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.form-container button:hover {
    background-color: #005bb5;
}

.form-container input[type="password"],
.form-container input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.form-container button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.form-container button:hover {
    background-color: #005bb5;
}

/* Spinner Modal Styles */
#spinnerModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #0073e6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

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