/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* body.auth-body {
  background: #ffffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
} */

/* Main Container */
.signup-container {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  /* max-width: 1000px;*/
  width: 100%; 
  transform: scale(0.9);
  transform-origin: center center; */
  /*width: 100vw;*/      /* full viewport width */
  height: 100%;     /* full viewport height */
  margin: 0;
}

/* Left Section */
.signup-left {
  background: #f0f2f5;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.signup-left .logo {
  width: 150px;
  margin-bottom: 2rem;
}

.product-box {
  position: relative;
  width: 100%;
  max-width: 900px;   /* optional limit */
  margin: 0 auto;     /* center align */
}

.product-box img,
.product-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}




.product-box::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}


.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #003366
  font-size: 2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Right Section */
.signup-right {
  flex: 1;
  padding: 2rem 3rem;
  background: #f0f2f5;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #003366;
  text-align: center;
}
.form-title .highlight {
  color: #4da6ff; 
}

.form-subtitle {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.4;
}

.welcome-text {
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.alert-danger {
  margin-bottom: 10px;
  color: red;             /* deep maroon text */
  border: 1px solid #fff;  /* coral border */
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
}
/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

label {
  margin-bottom: 0.3rem;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

input {
  padding: 0.6rem;
  border: 1px solid #d0d3d8;
  border-radius: 6px;
}

.iti {
  width: 100%;
}

/* Force phone input to look same as other inputs */
.iti input[type=tel] {
  width: 100%;
  /*padding: 0.6rem !important;*/
  padding-left: 76px;/* same as your email */
  border: 1px solid #d0d3d8 !important;
  border-radius: 6px !important;
  font-size: 14px;
  box-sizing: border-box;
  margin: 0 !important;
  line-height: normal;
}



select {
  padding: 0.6rem;
  border: 1px solid #d0d3d8;
  border-radius: 6px;
}

.btn-primary {
  width: 100%;
  padding: 10px;
  margin-top: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #003366;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #002244;
}

/* Terms + Footer */
.terms {
  font-size: 0.75rem;
  margin-top: 1rem;
  color: #777;
  line-height: 1.3;
  text-align: justify;
  max-width: 400px;
}
.terms .underline-text {
  text-decoration: underline;
  font-weight: bold;
  color: #777;
}

.auth-footer {
  /*margin-top: 1.5rem;*/
  font-size: 0.9rem;
  text-align: center;
}
.auth-footer a {
  color: #4da6ff;
  text-decoration: underline;
}
.auth-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .signup-container {
    flex-direction: column;
  }
  .signup-left, .signup-right {
    width: 100%;
  }
  .signup-right {
    padding: 1.5rem;
  }
}

