body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.container {
  display: flex;
  height: 100vh;
  background: linear-gradient(to right, #1DA1F2, #1779ba);
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 400px;
  margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
  padding: 15px;
  border: none;
  border-radius: 50px;
  margin-bottom: 20px;
  background-color: #fff;
  font-size: 16px;
}

input[type="button"] {
  padding: 15px;
  border: none;
  border-radius: 50px;
  background-color: #1DA1F2;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="button"]:hover {
  background-color: #126eae;
}

.signup {
  margin-bottom: 20px;
}

.signup p {
  color: #fff;
  font-size: 16px;
}

.signup a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.footer {
  position: absolute;
  bottom: 10px;
  color: #fff;
  font-size: 16px;
}



