@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}

@media (max-width: 991.98px) {
  .left-panel,
  .col-lg-6.px-0 {
    display: none !important;
  }
}

.signin-rw {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.form-wrapper {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-wrapper h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.form-wrapper p {
  font-size: 15px;
  color: #666;
  margin-bottom: 5px;
}

.form-control {
  margin-bottom: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

.btn-signup {
  background-color: #000;
  border: none;
  color: white;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.role-selection {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.role-card {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.role-card:hover {
  border-color: #a855f7;
}

.role-card.selected {
  background-color: #ffeae6;
  border-color: #ff826b;
  box-shadow: 0 0 0 2px rgba(255, 130, 107, 0.5);
}

.role-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #a855f7;
}

.role-card h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.role-card p {
  font-size: 0.9rem;
  color: #666;
}

.form-wrapper label {
  font-size: 14px;
  color: #333;
}

.alert {
  font-size: 14px;
  padding: 10px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 30px 20px;
  }

  .form-wrapper h2 {
    font-size: 24px;
  }

  .left-panel {
    padding: 30px;
  }

  .left-panel h1 {
    font-size: 1.8rem;
  }
}

.left-panel {
  background: url("../img/sighnup-img.png") center center/cover no-repeat;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #343434;
  height: 100%;
  position: relative;
}

.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.left-panel > * {
  position: relative;
  z-index: 1;
}

.left-panel h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 100px;
}

.left-panel p {
  margin-top: 10px;
  font-size: 1.1rem;
  max-width: 450px;
}

.left-panel .quote {
  background: linear-gradient(
    135deg,
    rgba(255, 234, 230, 0.8),
    rgba(255, 255, 255, 0.6)
  );
  padding: 20px;
  border-radius: 12px;
  margin-top: 100px;
  font-style: italic;
  font-size: 14px;
  color: #666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  max-width: 380px;
  width: 100%;
  position: relative;
  line-height: 1.6;
  backdrop-filter: blur(2px);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  margin-top: auto;
  margin-bottom: 20px;
}

.left-panel .quote .author {
  display: block;
  text-align: right;
  font-style: normal;
  margin-top: 10px;
}

.left-logo {
  width: 150px;
  margin-bottom: 40px;
}

.mid-or-span {
  position: relative;
}

.mid-or-span span {
  background: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: #666;
}

.mid-or-span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ccc;
  top: 50%;
  left: 0;
  z-index: 0;
}

.mid-or-span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ccc;
  top: 50%;
  right: 0;
  z-index: 0;
}

.text-link {
  color: #ff826b;
  font-weight: 300;
  text-decoration: none;
}

.text-link:hover {
  color: #ff826b;
}

.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border: 3px solid #343434;
  border-radius: 20px;
  background: #343434;
  font-weight: bold;
  color: #343434;
  cursor: pointer;
}

.toggleContainer::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  border-radius: 20px;
  background: white;
  transition: all 0.3s;
}

.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}

.toggleContainer div {
  padding: 6px;
  text-align: center;
  z-index: 1;
}

.toggleCheckbox {
  display: none;
}

.toggleCheckbox:checked + .toggleContainer div:first-child {
  color: white;
  transition: color 0.3s;
}

.toggleCheckbox:checked + .toggleContainer div:last-child {
  color: #343434;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer div:first-child {
  color: #343434;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer div:last-child {
  color: white;
  transition: color 0.3s;
}

.iti {
  width: 100%;
}

.iti-mobile .iti--container {
  width: 50% !important;
  height: auto !important;
}

/* Artist Interest Form Notice */
.artist-interest-notice {
  
  margin-bottom: 10px;
  text-align: left;
}

.artist-interest-notice .notice-icon {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.artist-interest-notice p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
