/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0; /* important */
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > *:first-child {
  margin-top: 0 !important;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header + section {
  margin-top: 0 !important;
}


header.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
/* Navbar */

.navbar img {
  height: 40px;
}

/* Main Section */
.main-wrapper {
  flex: 1;
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
}
/* Image Column */
.image-side {
  flex: 1;
  text-align: center;
}

.image-side img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Form Column */
.form-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.error-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  width: 100%;
  text-align:center;
}

.error-card p{
 color:#000;
 font-size:16px;
 margin-top:15px;
}


.error-card h2{
 color:#FE3A00;
 font-size:28px;
 font-weight:700;
}

.error-card h3{
 color:#000;
 font-size:32px;
 font-weight:600;
 margin-bottom:15px;
}

.error-card h4{
 color:#000;
 font-size:22px;
}

.error-card h5{
 color:#000;
 font-size:36px;
 font-weight:700;
}


.form-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 100%;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.form-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.form-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #0078ff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}

.form-note {
  font-size: 12px;
  color: #555;
  margin-top: 15px;
  line-height: 1.5;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  background-color: #f4f4f4;
  color: #666;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 992px) {
  .main-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .image-side img {
    max-width: 300px;
  }
}


/* Error Box */
.error-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.error-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.error-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-message {
  font-size: 16px;
  color: #555;
}


 .processing-screen {
          display: none; /* Hide initially */
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 9999;
          background-color: white;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        
        .processing-box {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px;
        }
        
        .spinner {
          width: 50px;
          height: 50px;
          border: 6px solid #f3f3f3;
          border-top: 6px solid #ef7c46;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }
