* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #212529;
  font-family: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 1000px;
  margin: 32px auto;
  padding: 0 16px;
}

header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  padding: 20px 0;
  border-bottom: 2px solid #f1f3f4;
}
header .logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(43, 226, 117, 0.15);
  border: 2px solid #f1f3f4;
  transition: all 0.2s ease;
}
header .logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 226, 117, 0.25);
}
header .logo svg {
  width: 50px;
  height: 50px;
}
header h1 {
  font-size: 28px;
  margin: 0;
  color: #212529;
  font-weight: 700;
}
header .muted {
  color: #6c757d;
  font-size: 16px;
  margin-top: 4px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #212529;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #dee2e6;
  background: #ffffff;
  color: #212529;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
}
input:focus {
  border-color: #2be275;
  box-shadow: 0 0 0 3px rgba(43, 226, 117, 0.1);
}
input::placeholder {
  color: #adb5bd;
}

select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #dee2e6;
  background: #ffffff;
  color: #212529;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
}
select:focus {
  border-color: #2be275;
  box-shadow: 0 0 0 3px rgba(43, 226, 117, 0.1);
}
select::placeholder {
  color: #adb5bd;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
select:focus {
  outline: none;
  border-color: #2be275;
  box-shadow: 0 0 0 3px rgba(43, 226, 117, 0.1);
}
select option {
  background: #f8f9fa;
  color: #212529;
  padding: 8px 12px;
}

textarea {
  width: 100%;
  min-height: 520px;
  padding: 16px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 2px solid #f1f3f4;
  color: #212529;
  line-height: 1.6;
  white-space: pre;
  overflow: auto;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 13px;
  resize: vertical;
  transition: all 0.2s ease;
}
textarea:focus {
  border-color: #2be275;
  box-shadow: 0 0 0 3px rgba(43, 226, 117, 0.1);
}

button {
  appearance: none;
  background: linear-gradient(135deg, #2be275, #28a745);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 226, 117, 0.4);
}
button:active {
  transform: translateY(0);
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
button.secondary {
  background: #ffffff;
  border: 2px solid #dee2e6;
  color: #212529;
  font-weight: 500;
}
button.secondary:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #2be275;
}

.muted {
  color: #6c757d;
}

.hint {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
}

footer {
  opacity: 0.8;
  margin-top: 16px;
  font-size: 13px;
  color: #adb5bd;
  line-height: 1.5;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.email-verification {
  margin-bottom: 24px;
}
.email-verification h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #2be275;
  font-size: 20px;
  font-weight: 700;
}
.email-verification p {
  margin-bottom: 20px;
  color: #6c757d;
  line-height: 1.6;
}
.email-verification form {
  display: flex;
  gap: 12px;
  align-items: start;
  flex-direction: column;
}
.email-verification form input {
  flex: 1;
}
.email-verification h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #212529;
  font-size: 18px;
  font-weight: 600;
}
.email-verification .code-input {
  width: 100%;
  margin-bottom: 16px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
}
.email-verification .verification-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.email-verification .verification-buttons button {
  flex: 1;
  padding: 12px 16px;
}

#emailStatus {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid;
  border-color: transparent;
}
#emailStatus.success {
  background: rgba(43, 226, 117, 0.1);
  color: #28a745;
  border-left-color: #2be275;
}
#emailStatus.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-left-color: #dc3545;
}
#emailStatus.info {
  background: rgba(13, 202, 240, 0.1);
  color: #0dcaf0;
  border-left-color: #0dcaf0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 41, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-content {
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(33, 37, 41, 0.3);
  background-color: aliceblue;
  padding: 8px 16px;
}

.description-section {
  margin: 40px 0;
  padding: 32px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 2px solid #f1f3f4;
}
.description-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
.description-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2be275;
  margin: 24px 0 16px 0;
  line-height: 1.4;
}
.description-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #495057;
  margin: 0 0 16px 0;
}
.description-section p:last-child {
  margin-bottom: 0;
}

.faq-section {
  margin: 60px 0 40px 0;
  padding: 40px 0;
  border-top: 2px solid #f1f3f4;
}
.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 32px 0;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #f1f3f4;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #2be275;
  box-shadow: 0 4px 20px rgba(43, 226, 117, 0.1);
  transform: translateY(-2px);
}
.faq-item.faq-open {
  border-color: #2be275;
  box-shadow: 0 4px 20px rgba(43, 226, 117, 0.15);
}
.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin: 0;
  line-height: 1.4;
}
.faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.faq-item .faq-header:hover h3 {
  color: #2be275;
}
.faq-item .faq-content {
  margin-top: 8px;
}
.faq-item .faq-icon {
  font-size: 20px;
  font-weight: bold;
  color: #2be275;
  transition: transform 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
}
.faq-item[itemprop=acceptedAnswer] {
  margin-top: 16px;
  animation: slideDown 0.3s ease;
}
.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
  margin: 0 0 12px 0;
}
.faq-item p:last-child {
  margin-bottom: 0;
}
.faq-item ul {
  margin: 12px 0;
  padding-left: 20px;
}
.faq-item ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 8px;
}
.faq-item ul li:last-child {
  margin-bottom: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .description-section {
    margin: 24px 0;
    padding: 20px;
  }
  .description-section h2 {
    font-size: 20px;
  }
  .description-section h3 {
    font-size: 18px;
  }
  .description-section p {
    font-size: 15px;
  }
  .faq-section {
    margin: 40px 0 24px 0;
    padding: 24px 0;
  }
  .faq-section h2 {
    font-size: 24px;
  }
  .faq-item {
    padding: 20px;
    margin-bottom: 16px;
  }
  .faq-item h3 {
    font-size: 16px;
  }
  .faq-item p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .wrap {
    margin: 16px auto;
    padding: 0 12px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .row {
    flex-direction: column;
    align-items: stretch;
  }
  .email-verification form {
    flex-direction: column;
  }
  .modal-content {
    width: 95%;
  }
  header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  header .logo {
    align-self: center;
  }
  .verification-buttons {
    flex-direction: column;
  }
  .verification-buttons button {
    width: 100%;
  }
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #2be275;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */
