/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0px;
  background-color: #f4f4f4;
}

h1, h2, h3 {
  color: #000000;
}

/* General Background */
.image-switcher {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  padding: 20px;
}

/* Container */
.verification-container {
  width: 100%;
  max-width: 720px;
  padding: 30px;
  padding-top: 60px; /* Extra top padding to avoid overlap with Help button */
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8); /* Slight opacity for glass effect */
  backdrop-filter: blur(15px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  box-sizing: border-box;
  position: relative;
}

/* Top Section */
.verification-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.verification-logo {
  position: absolute;
  top: 20px;
  left: 30px;
}

.verification-logo img {
  width: 100px;
}

.verification-help {
  position: absolute;
  top: 20px;
  right: 20px;
}

.verification-help button {
  background-color: #ffffff;
  color: #333;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

.verification-help button:hover {
  background-color: #e0e0e0;
}

/* Title */
.title {
  font-family: 'Libre Caslon Text', serif;
  font-size: 22px;
  font-weight: 200;
  margin-bottom: 20px;
  color: #333;
}

/* Form Styles */
#verification-form {
  width: 100%;
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}

.form-group {
  width: 33%;
  position: relative;
  box-sizing: border-box;
}

.form-group label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Verify Button */
.verify-button {
  width: 100%;
  height: 50px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin-top: 24px;
}

.verify-button:hover {
  background-color: #333;
}

/* Bottom Disclaimer */
.verification-bottom p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  line-height: 1.4;
  text-align: left;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal.show {
  display: flex;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #ffffff;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.5s ease-in-out; /* Apply fade-in animation to modal content */
}

.modal-content h2 {
  font-family: 'Libre Caslon Text', serif;
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #000;
}



/* Mobile Styles */
@media (max-width: 600px) {
  #verification-form {
    flex-direction: column;
    gap: 10px;
  }

  .form-group {
    width: 100%;
  }

  .form-group input {
    max-width: 100%;
    height: 50px;
    box-sizing: border-box;
  }

  .verify-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .verification-logo img {
    width: 80px;
  }
}
