@charset "UTF-8";
@layer page {
  /* Form Container */
  .registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  /* Form Grid Layout */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .form-section {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .form-section:hover {
    border-color: #e74c3c;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.15);
  }
  .section-title {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
  }
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
  }
  /* Full Width Sections */
  .form-section.full-width {
    grid-column: 1/-1;
  }
  /* Form Rows */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group.full-width {
    grid-column: 1/-1;
  }
  .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  .form-input, .form-select {
    padding: 10px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }
  .form-input:focus, .form-select:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  }
  .form-select {
    cursor: pointer;
  }
  /* Radio Groups */
  .radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  .radio-option input[type=radio] {
    width: 16px;
    height: 16px;
    accent-color: #e74c3c;
  }
  .radio-option label {
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
  }
  /* Registration Choice Slider */
  .choice.slider {
    width: 100%;
    margin-bottom: 6em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .choice.slider > .step {
    width: 25%;
    max-width: 25% !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
  }
  .choice.slider > .step.active {
    transform: scale(1.1);
  }
  /* Progress line - step'lerin altında */
  .progress-line {
    position: absolute;
    top: 45px;
    left: 22px;
    right: 22px;
    height: 8px;
    background: #e9ecef;
    z-index: 1;
    border-radius: 10px;
  }
  /* Progress fill - seçilen seçeneğe kadar olan kısım */
  .progress-fill {
    position: absolute;
    top: 45px;
    left: 22px;
    height: 8px;
    background: #e74c3c;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0;
    z-index: 2;
  }
  /* Tıklanabilir yuvarlak noktalar */
  .choice.slider > .step > .step-dot {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #e9ecef;
    border: 3px solid white;
    border-radius: 50%;
    z-index: 4;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .choice.slider > .step.active > .step-dot {
    background: #e74c3c;
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
  }
  .choice.slider > .step:hover > .step-dot {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  /* Yazılar için ayrı tıklama alanı */
  .choice.slider > .step > .label {
    transform-origin: right center;
    transform: translate(-20px, 5px) rotate(-60deg);
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.2;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
  }
  .choice.slider > .step.active > .label {
    color: #e74c3c;
    font-weight: 600;
  }
  /* Checkboxes */
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }
  .checkbox-group input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #e74c3c;
    margin-top: 2px;
  }
  .checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #495057;
  }
  .checkbox-group a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
  }
  .checkbox-group a:hover {
    text-decoration: underline;
  }
  /* Textarea */
  .form-textarea {
    padding: 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
  }
  .form-textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  }
  /* Submit Button */
  .submit-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
  }
  .submit-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
  }
  .submit-btn:active {
    transform: translateY(0);
  }
  input[name=captcha-0] {
    opacity: 0;
    pointer-events: none;
  }
  input[name=captcha-1] {
    display: none;
  }
  #form-checkboxes .checkbox-group {
    position: relative;
  }
  #form-checkboxes .checkbox-group label {
    display: inline-block;
    max-width: 90%;
  }
  #registrationForm.player .form-group.required-if-player label:after {
    content: " *";
    display: inline;
  }
  .error-section {
    text-align: center;
  }
  .error-section #error-box {
    box-shadow: 0 0 0 1px #E0B4B4 inset, 0 0 0 0 transparent;
    background-color: #fff6f6;
    color: #9f3a38;
    text-align: left;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    min-width: 50vw;
    position: relative;
    min-height: 1em;
    padding: 1em 1.5em;
    line-height: 1.4285em;
    border-radius: 0.28571429rem;
  }
  .error-section #error-box.hidden {
    visibility: hidden;
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
  }
  .error-section #error-box .header {
    font-size: 1.2em;
    font-weight: bold;
  }
  .error-section #error-box #error {
    font-size: 1em;
  }
  .success-section {
    text-align: center;
  }
  .success-section #success-box {
    box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent;
    background-color: #fcfff5;
    color: #1a531b;
    text-align: left;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    min-width: 50vw;
    position: relative;
    min-height: 1em;
    padding: 1em 1.5em;
    line-height: 1.4285em;
    border-radius: 0.28571429rem;
  }
  .success-section #success-box.hidden {
    visibility: hidden;
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
  }
  .success-section #success-box .header {
    font-size: 1.2em;
    font-weight: bold;
  }
  .success-section #success-box #success {
    font-size: 1em;
  }
}

/*# sourceMappingURL=registration-form.css.map */
