/* Create Account Page Styles */
.create-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(29, 29, 29);
  padding: 40px 20px;
}

.create-card {
  padding: 40px;
  max-width: 600px;
  width: 100%;
}

.create-header {
  text-align: center;
  margin-bottom: 40px;
}

.create-logo {
  height: auto;
  width: 120px;
  max-height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.create-header h1 {
  color: rgb(242, 241, 237);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.create-header p {
  color: rgb(180, 180, 180);
  font-size: 16px;
  margin-bottom: 0;
}

/* Form Styles */
.create-form {
  margin-bottom: 20px;
}

/* Form Sections */
.form-section {
  margin-bottom: 35px;
}

.form-section h2 {
  color: rgb(242, 241, 237);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(65, 65, 65);
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Form Labels */
.form-group label {
  display: block;
  color: rgb(242, 241, 237);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Form Inputs */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: rgb(50, 50, 50);
  border: 1px solid rgb(65, 65, 65);
  border-radius: 2px;
  color: rgb(242, 241, 237);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(249, 237, 219);
  box-shadow: 0 0 0 3px rgba(247, 63, 13, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgb(120, 120, 120);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Form Options */
.form-options {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: rgb(242, 241, 237);
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  height: 18px;
  width: 18px;
  background-color: rgb(50, 50, 50);
  border: 1px solid rgb(65, 65, 65);
  border-radius: 2px;
  margin-right: 12px;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background-color: rgba(249, 237, 219, 0.1);
  border-color: rgb(249, 237, 219);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  display: block;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container a {
  color: rgb(249, 237, 219);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox-container a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* Create Account Button */
.create-btn {
  width: 100%;
  padding: 14px 20px;
  background-color: rgb(249, 237, 219);
  color: rgb(29, 29, 29);
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.create-btn:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(249, 237, 219, 0.1);
}

.create-btn:active {
  transform: translateY(0);
}

/* Create Footer */
.create-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgb(65, 65, 65);
}

.create-footer p {
  color: rgb(180, 180, 180);
  font-size: 14px;
  margin: 0;
}

.create-footer a {
  color: rgb(249, 237, 219);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.create-footer a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .create-container {
    padding: 20px 10px;
  }

  .create-card {
    padding: 30px 25px;
    margin: 10px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group.full-width {
    grid-column: 1;
  }

  .form-section {
    margin-bottom: 30px;
  }

  .form-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .create-header h1 {
    font-size: 24px;
  }

  .create-header p {
    font-size: 14px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .checkbox-container {
    font-size: 13px;
  }
}
