
.back-icon {
  position: absolute;
  top: 20px;
  right: 30px; /* Moved to right side */
  font-size: 20px;
  color: white;
  background-color: #751111;
  padding: 10px 12px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
  transition: background-color 0.3s ease;
}

.back-icon:hover {
  background-color: #a52a2a;
  color: #fff;
}


body.auth-body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}

.auth-container {
  display: flex;
  height: 100vh;
}

.auth-image-section {
  flex: 1;
}

.auth-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-form-section {
  flex: 1;
  background-color: #111;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.auth-form-section h2 span {
  color: #e50914;
  font-weight: bold;
}

.auth-form-section p {
  margin-bottom: 30px;
  font-size: 14px;
  color: #ccc;
}

.input-icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: #333;
  border-radius: 25px;
  padding: 10px 15px;
}

.input-icon i {
  margin-right: 10px;
  color: #e50914;
}

.input-icon input,
.input-icon select {
  background: transparent;
  border: none;
  color: white;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #e50914;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-top: 20px;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #ff1a1a;
}

.auth-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.auth-footer a {
  color: #e50914;
  text-decoration: none;
}

.error-message {
  color: red;
  font-size: 0.85em;
  margin-top: 4px;
}
