* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

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

.ellipse {
  width: 500px;
  height: 500px;
  left: 1200px;
  top: -188px;
  position: absolute;
  background: rgba(141, 164, 238, 0.4);
  border-radius: 9999px;
}
.ellipse1 {
  width: 250px;
  height: 250px;
  left: 1400px;
  top: 200px;
  position: absolute;
  background: rgba(141, 164, 238, 0.4);
  border-radius: 9999px;
}
.ellipse2 {
  width: 250px;
  height: 250px;
  left: -100px;
  top: 300px;
  position: absolute;
  background: rgba(141, 164, 238, 0.4);
  border-radius: 9999px;
}
.ellipse3 {
  width: 500px;
  height: 500px;
  left: -100px;
  top: 400px;
  position: absolute;
  background: rgba(141, 164, 238, 0.4);
  border-radius: 9999px;
}

.form-container {
  background-color: #aee1e8;
  padding: 20px;
  border-radius: 10px;
  width: 300px;

  text-align: center;
}

.tab-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tab {
  width: 50%;
  background-color: #c9e9d8;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.tab.active {
  background-color: #b6d8f1;
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.terms-container {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.terms-container input {
  margin-right: 10px;
}

.submit-btn {
  background-color: #7079c4;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

hr {
  margin: 20px 0;
  border: 1px solid #ccc;
}

.alternative-login {
  text-align: center;
}

.alternative-login p {
  font-size: 14px;
  margin-bottom: 10px;
}

.social-login {
  margin: 5px 0;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.google {
  background-color: #f4f4f4;
  color: #000;
}

.facebook {
  background-color: #f4f4f4;
  color: #000;
}
