*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}
.navbar{
    padding: 12px;
    background-color: rgb(11, 23, 43);
}
.navbar h2{
    color: white;
    font-size: 28px;
    font-weight: 400;
    font-family: "Goodspace";
    text-align: center;
}
.form-section-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px; 
    margin-top: 40px;
    margin-right: 20px;
    margin-left: 20px;
    flex-wrap: wrap; 
}
.side-image {
    width: 250px; 
    max-width: 100%;        
    height: auto;
    border-radius: 12px;  
    object-fit: contain; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.side-image:hover {
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .form-section-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .side-image {
        margin-bottom: 20px;
    }
}
.form-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
}
.form, .form1 {
    flex: 1 1 400px;
    max-width: 500px;
    min-width: 320px;
    background-color: #ffffff;
    padding: 20px 25px;
    margin-bottom: 30px;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.form h2,
.form1 h2 {
    font-family: 'inter', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
    font-weight: 500;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 6px 10px;
    margin-top: 4px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
input:focus,
select:focus,
textarea:focus {
    border-color: #000;
    outline: none;
    background-color: #fff;
}
label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #374151;
}
.Submit {
    text-align: center;
    margin-bottom: 40px;
}
.Submit button {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 22px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}
.Submit button:hover {
    background-color: #333333;
}
@media (max-width: 480px) {
    input, select, textarea {
        font-size: 14px;
    }
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader {
  border:6px solid #d0d7dc;
  border-top: 4px solid #0a162c;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
