

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #1e1e2f;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 900px;
  height: 600px;
  display: flex;
  background-color: #2b2b3c;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.left, .right {
  flex: 3;
}

.left {
  position: relative;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.overlay-text {
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: 20px;
  line-height: 1.4;
}

.back-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.right {
  background-color: #1e1e2f;
  padding: 50px 30px;
}

.right h1 {
  margin-bottom: 10px;
  font-size: 50px;
}

.right p {
  margin-bottom: 20px;
  font-size: 16px;
}

.right a {
  color: #a68cff;
  text-decoration: none;
}
.input-field p a:hover{
    color: #801bdf;

}

form input {
  width: 90%;
  height: 40px;
  padding: 10px 10px 10px 30px ;
  margin-bottom: 15px;
  border: none;
  border-radius: 25px;
  background-color: #2b2b3c;
  color: white;
  font-size: 18px;
}





.submit-btn {
  width: 60%;
  height: 50px;
  padding: 12px;
  /* text-align: center; */
  margin-left: 100px;
  margin-top: 30px;
  background-color: #a68cff;
  color: white;
  border: none;
  border-radius: 20%;
  font-size: 18px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #7251e9;
}

.divider {
  text-align: center;
  margin: 15px 0;
  font-size: 13px;
  color: #bbb;
}

.social-buttons {
  display: flex;
  gap: 10px;
}

.google-btn, .apple-btn {
  flex: 1;
  padding: 10px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.google-btn:hover, .apple-btn:hover {
  background-color: #e5e5e5;
}
