@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: rgb(200, 200, 200);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins";
}

#form-container {
  width: 700px;
  height: 700px;
  background-color: white;
  display: flex;
  flex-direction: column; /* Change direction to column */
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
}



#div-bg {
  background: url("logo-mobile.jpeg") no-repeat;
  background-size: contain; /* Ensures the image fits within the section */
  background-position: center; /* Centers the image */
  width: 100%; /* Let it span the full width */
  height: auto; /* Default height */
  padding-top: 56.25%;
  
}

#form-section {
  width: 100%;
  height:50%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px;
  box-sizing: border-box;
}

#form-success-section {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 30px 30px;
  box-sizing: border-box;
  align-items: center;
}

#form-section form {
  box-sizing: border-box;
  width: 100%;
  padding: 25px;
}

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

input {
  outline: none;
  border: none;
  padding: 5px 15px;
  width: 100%;
}

.form-field {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 200ms box-shadow ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 5px 0px;
}

.form-field i {
  color: rgb(65, 65, 65);
}

#forgot-password {
  text-align: right;
  font-size: 15px;
  color: grey;
}

#forgot-password small {
  cursor: pointer;
}

#register-text {
  font-size: 15px;
  text-align: center;
  padding: 10px 0px;
}

#register-text span {
  color: grey;
  text-decoration: underline;
}
#register-text span:hover {
  cursor: pointer;
  color: black;
}
#submit-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: rgb(56, 56, 56);
  color: white;
  font-family: "Poppins";
  margin: 5px 0px;
  transition: 200ms background-color ease-in-out;
}

#submit-btn:hover {
  cursor: pointer;
  background-color: rgb(128, 128, 128);
}

#submit-btn:active {
  background-color: rgb(175, 175, 175);
}

#return-btn {
  width: 80%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: rgb(255, 255, 255);
  color: white;
  font-family: "Poppins";
  margin: 5px 0px;
  transition: 200ms background-color ease-in-out;
}

#return-btn:hover {
  cursor: pointer;
  background-color: rgb(128, 128, 128);
}

#return-btn:active {
  background-color: rgb(175, 175, 175);

#icon-container {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgb(0, 0, 0, 0.15);
  padding-top: 30px;
}

.icons {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border-radius: 50%;
  color: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 1.5);
  margin: 5px;
}

.facebook {
  background-color: #4267b2;
}

.twitter {
  background-color: #1da1f2;
}

.google {
  background-color: #db4437;
}
