@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

body {
  background: linear-gradient(90deg, #ffffff 0%, #c9d6ff 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  width: 90%;
  max-width: 850px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%;
}

/* Left Section */
.left {
  background-color: #FF4500;
  width: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: 30px 0 0 30px;
}

.left div {
  text-align: center;
}

.left div p {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.left div a {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
  color: #fff;
}

.left div input[type="button"] {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* Right Section */
.right {
  width: 50%;
  padding: 40px;
  position: relative;
}

.right div {
  text-align: center;
}

.right h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0.8;
}

.right input {
  width: 100%;
  padding: 13px 20px;
  margin: 10px 0;
  background-color: #efefef;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.right input:focus {
  outline: none;
}

.right .material-symbols-outlined {
  position: absolute;
  right: 50px;
  transform: translateY(-165%);
}

.person {
  top: 165px;
}

.lock {
  top: 238px;
}

.right a {
  display: block;
  margin: 15px 0;
  color: #000;
  font-size: 14px;
}

.right button {
  width: 100%;
  background-color: #FF4500;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
}

.right p {
  margin: 15px 0 10px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  border: 2px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
    border-radius: 0;
    padding: 30px 20px;
  }

  .left {
    border-radius: 30px 30px 0 0;
  }

  .right {
    border-radius: 0 0 30px 30px;
  }

  .right .material-symbols-outlined {
    display: none;
  }
}
