* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
}

.login-wrapper {
  display: flex;
  height: 100vh;
}

/* LEFT VIDEO */
.video-section {
  flex: 1;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM */
.form-section {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

.form-section h2 {
  margin-bottom: 30px;
}

form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 25px;
}

.form-options a {
  text-decoration: none;
  color: #4caf50;
}

/* GREEN BUTTON */
.sign-in-btn {
  width: 100%;
  padding: 14px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.sign-in-btn:hover {
  background-color: #43a047;
}

.signup-text {
  margin-top: 20px;
  font-size: 14px;
}

.signup-text a {
  color: #4caf50;
  text-decoration: none;
}
