/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style the container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Style form groups */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

/* Style labels */
label {
    display: block;
    font-weight: bold;
}

/* Style input fields and text area */
input[type="text"],
input[type="email"],
input[type="unit"],
input[type="phone"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style file inputs */
input[type="file"] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

/* /* ... (previous CSS styles) */

/* Style submit button */
input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px; /* Add margin to lower the button */
}

/* Center the submit button horizontally */
.form-group:last-child {
    text-align: center;
}

}

/* Responsive styles */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
}
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: fixed; /* or absolute */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000; /* Ensure it's above other content */
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
