/* Reset and basics */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* Layout */
.standalone-signup-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Background diagonal */
.background-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to right bottom, #f8965e, #ea6a30);
  z-index: -1;
  transform: skewY(-5deg) translateY(40%);
}

.left-panel {
  flex: 1;
  padding: 4rem 3rem;
  position: relative;
  justify-content: flex-end;
  display: flex;
}

.right-panel {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
}

.logo-nudge {
  font-size: 1.1rem;
  color: #999;
  margin-left: 5px;
  align-self: flex-end;
  margin-bottom: 5px;
}

/* Features */
.feature {
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  position: relative;
}

.feature:nth-child(1) {
  border-color: #f8c393;
}

.feature:nth-child(2) {
  border-color: #f48f64;
}

.feature:nth-child(3) {
  border-color: #e76331;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature p {
  color: #666;
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  margin-top: 3rem;
}

.coach-profiles {
  display: flex;
  margin-bottom: 1rem;
}

.coach-profiles img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.stars {
  color: #FFD700;
  font-size: 1.5rem;
  display: flex;
  margin-bottom: 0.3rem;
}

.star-image {
  width: 100%;
  max-width: 140px;
  height: auto;
}

.star {
  margin-right: 0.1rem;
}
.rating {
  display: flex;
  align-items: center;
  gap: 40px;
}

.rating p {
  font-size: 1.3rem;
  font-weight: 500;
}

/* Form area */
.signup-form {
  width: 100%;
  max-width: 80%;
  background: white;
  padding: 2.5rem 5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.signup-form h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.signup-benefits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #666;
  font-size: 0.85rem;
  justify-content: center;
}

.signup-benefits span {
  display: flex;
  align-items: center;
}

.signup-benefits span:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
  background-size: contain;
  margin-right: 5px;
  border: 1px solid;
  border-radius: 30px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #bcbcbc;
  border-radius: 6px;
  font-size: 1rem;
  border-radius: 12px;
}

.country-select {
  position: relative;
}

.country-select select {
  appearance: none;
  padding-right: 30px;
}

.country-select:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  pointer-events: none;
}

.create-account-btn {
  width: 100%;
  padding: 1rem;
  background-color: #f17b49;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.create-account-btn:hover {
  background-color: #e56e3d;
}

.login-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
  font-size: 0.95rem;
}

.login-link a {
  color: #5377f7;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Info icon */
.info-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #eee;
  color: #999;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
  margin-left: 5px;
  cursor: help;
}

/* Flag */
.flag {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 1200px) {
  .signup-form {
    max-width: 90%;
    padding: 2rem 3rem;
  }
  
  .left-panel {
    padding: 3rem 2rem;
  }
  
  .right-panel {
    padding: 3rem 2rem;
  }
}

@media (max-width: 992px) {
  .standalone-signup-container {
    flex-direction: column-reverse; /* Form on top for smaller screens */
  }

  .left-panel, .right-panel {
    padding: 2rem;
    flex: none;
  }
  
  .left-panel {
    justify-content: center;
  }
  
  .left-panel > div {
    max-width: 90%;
  }

  .signup-form {
    max-width: 100%;
    padding: 2rem;
  }

  .background-diagonal {
    height: 40%;
    transform: skewY(-5deg) translateY(70%);
  }
}

@media (max-width: 768px) {
  .signup-form {
    padding: 1.5rem 2rem;
  }
  
  .rating {
    gap: 20px;
  }
  
  .rating p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .standalone-signup-container {
    min-height: auto;
  }
  
  .left-panel, .right-panel {
    padding: 1.5rem;
  }
  
  .left-panel > div {
    max-width: 100%;
  }

  .signup-form {
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .signup-benefits {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo {
    margin-bottom: 2rem;
    justify-content: center;
  }
  
  .feature {
    padding-left: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .feature h3 {
    font-size: 1.2rem;
  }
  
  .feature p {
    font-size: 0.95rem;
  }
  
  .rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.8rem;
  }
}

@media (max-width: 380px) {
  .signup-form h2 {
    font-size: 1.5rem;
  }
  
  .signup-benefits {
    font-size: 0.8rem;
  }
  
  .create-account-btn {
    padding: 0.8rem;
  }
}