* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: 'Manrope', sans-serif;
  background-color: white;
  background-image: url('/imgs/background.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

a {
    text-decoration: none;
    color: inherit;
}

#header {
  display: flex;
  justify-content: flex-end;
  align-items: right;
  padding: 10px 20px;
}

#header h1 {
  font-size: 2rem;
  font-weight: 400;
  color: #f5f5f5;
  margin: 0;
}

.login-container {
  position: relative;
  display: inline-block;
}

.login-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #b3d1ea;
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 280px;
  z-index: 1000;
  margin-top:10px;
}

.input-group {
  margin-bottom: 10px;
}

.login-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-btn {
  background: #007BFF;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  font-weight: bold;
}

.login-btn:hover {
  background: #0056b3;
}

.login-message {
  font-size: 14px;
  color: red;
  text-align: center;
}

.about-link {
  color: black;
  font-weight: normal;
  margin-right: 25px;
  text-decoration: underline;
}

.register-container {
  position: relative;
  display: inline-block;
}

.register-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #b3d1ea;
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 280px;
  z-index: 1000;
  margin-right: 30px;
  margin-top: 10px;
}

#main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}
#main-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-buttons {
    display: flex;
    gap: 16px;
}
.auth-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0056FF;
    color: #f5f5f5;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.auth-btn:hover {
    background-color: #003bb5;
}
#footer {
    text-align: center;
    padding: 16px 0;
    background: black;
}
#footer p {
    font-size: 0.875rem;
    color: #9ca3af;
}
.announcement-banner {
    background-color: #ff00008f;
    color: #f5f5f5;
    padding: 3px;
    text-align: center;
    width: 100%;
}
.welcome-container {
    text-align: center;
    color: #000;
    margin-top: 50px;
    font-family: Arial, sans-serif;
  }
  
  .title, .subtitle, .description {
    opacity: 0;
    animation: fadeInUp 1s forwards;
    margin: 0 auto;
  }
  
  .title {
    font-size: 7rem;
    animation-delay: 0s;
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
    animation-delay: 0.5s;
  }
  
  .description {
    font-size: 1rem;
    max-width: 600px;
    margin-top: 20px;
    animation-delay: 1s;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 40px 20px;
  }
  #about-section {
    max-width: 800px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    overflow: hidden;
  }
  #about-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
  }
  #about-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0056FF;
    margin-bottom: 10px;
    text-align: center;
  }
  #about-section p {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  #about-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
  }
#about-section li {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  #requestOriAccessForm {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .ori-form-group {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
  }

  .full-width {
    flex: 1 1 100%;
  }

  #requestOriAccessForm label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
  }

  #requestOriAccessForm input[type="text"],
  #requestOriAccessForm input[type="tel"],
  #requestOriAccessForm input[type="email"],
  #requestOriAccessForm select,
  #requestOriAccessForm textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.5em;
    margin-bottom: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  #requestOriAccessForm input[type="radio"] {
    margin-right: 0.3em;
  }

  #requestOriAccessForm p {
    margin: 1em 0 0.5em;
    font-weight: bold;
  }

  #requestOriAccessForm button[type="submit"] {
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    background: #007BFF;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
  }

  #requestOriAccessForm button[type="submit"]:hover {
    background: #0056b3;
  }

  @media (max-width: 768px) {
    .ori-form-group {
      flex: 1 1 100%;
    }
  }