* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 800px;
  /* min-height: 550px; */
  background: #fafafa;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* --- Left Side: Video Zoom-Out Fix --- */
.auth-left {
  width: 40%;
  background: #fafafa; /* Match the video background */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-right: 1px solid #f0f0f0;
}

.auth-left video {
  /* This scales the video down so the whole tree is visible */
  width: 90%; 
  height: 90%;
  /* 'contain' ensures the whole video is visible without cropping */
  object-fit: contain; 
  display: block;
}

/* --- Right Side: Form --- */
.auth-right {
  width: 60%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-right h2 {
  font-size: 32px;
  color: #f37021;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 35px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 0 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #f37021;
  box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1);
}

.login-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #f37021;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.login-btn:hover {
  background: #e65a0d;
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.2);
}

.bottom-text {
  text-align: center;
  margin-top: 25px;
  color: #6b7280;
  font-size: 14px;
}

.bottom-text a {
  color: #f37021;
  text-decoration: none;
  font-weight: 700;
}
.link-btn {
    background: none;
    border: none;
    color: #f37021;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    transition: 0.3s;
  }

  .link-btn:hover {
    /* text-decoration: underline; */
    color: #e65a0d;
  }
/* --- Responsive --- */
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    max-width: 450px;
  }
  .auth-left, .auth-right {
    width: 100%;
  }
  .auth-left {
    height: 300px;
  }
}