/* assets/css/style.css */

/* --- General Resets --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Body & Container --- */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

/* --- Header --- */
.header {
  margin-bottom: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
}

.accent {
  color: #00B8D4;
}

/* --- Card --- */
.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --- Form Styles --- */
.check-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.code-input {
  font-size: 1rem;
  padding: 10px 15px;
  width: 80%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  text-align: center;
}

.check-button {
  font-size: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  cursor: pointer;
}

.check-button:hover {
  background-color: #555;
}

/* --- FAQ Section --- */
.faq-section {
  text-align: left;
  margin-top: 20px;
}

.faq-section h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-toggle-icon {
  font-weight: bold;
  margin-left: 10px;
}

.faq-answer {
  display: none;
  padding-bottom: 10px;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 5px 0;
}

.info-box {
  width: 80%;
  margin: 12px auto 0;
  padding: 12px 16px;
  background: #e6f4ff;
  border-left: 4px solid #007BFF;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #0056b3;
  text-align: left;
  display: flex;
  align-items: center;
}
.info-box i {
  margin-right: 10px;
  font-size: 1.2rem;
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
