/* Üye Ol Sayfası CSS */

/* Bootstrap Icons görünürlük */
.bi {
  display: inline-block !important;
  font-family: "bootstrap-icons" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Tüm ikonlar için genel kural */
i[class*="bi-"] {
  display: inline-block !important;
  font-family: "bootstrap-icons" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Font face tanımı */
@font-face {
  font-family: "bootstrap-icons";
  src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
       url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Hero Section */
.uye-ol-hero {
  background: linear-gradient(135deg, #f0f8f7 0%, #e8f8f7 100%);
  padding: 40px 0 30px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}

/* Üye Ol İçerik */
.uye-ol-content {
  padding: 60px 0;
  background: #ffffff;
}

.uye-ol-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Form Container */
.uye-ol-form-container {
  background: #f8fffe;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.uye-ol-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.required {
  color: #ff6b6b;
}

.form-group input,
.form-group select {
  padding: 12px 15px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #00b7b2;
  box-shadow: 0 0 0 3px rgba(0, 183, 178, 0.1);
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1rem;
  margin-top: 12px;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 12px;
}

.password-toggle:hover {
  color: #00b7b2;
}

/* Checkbox Groups */
.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #00b7b2;
  border-color: #00b7b2;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '\2713';
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.privacy-link {
  color: #00b7b2;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Divider */
.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  background: #ffffff;
  padding: 0 15px;
  color: #666;
  font-size: 0.9rem;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-social {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #666;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-social:hover {
  border-color: #00b7b2;
  color: #00b7b2;
  transform: translateY(-2px);
}

.google-btn:hover {
  border-color: #db4437;
  color: #db4437;
}

.facebook-btn:hover {
  border-color: #3b5998;
  color: #3b5998;
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer p {
  color: #666;
  margin: 0;
}

.login-link {
  color: #00b7b2;
  text-decoration: none;
  font-weight: 600;
}

.login-link:hover {
  text-decoration: underline;
}

/* Info Cards */
.uye-ol-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b7b2, #4ecdc4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.info-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .uye-ol-hero {
    padding: 30px 0 20px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .uye-ol-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .uye-ol-form-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .uye-ol-content {
    padding: 40px 0;
  }
  
  .uye-ol-form-container {
    padding: 25px 15px;
  }
}
