@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: 0.2s all linear ease-in-out;
}

body {
  /* position: fixed; */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url(/images/Auth.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5%;
}

.signup {
  width: 30%;
  color: whitesmoke;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30prgba (0, 0, 0, 0.2);
  padding: 1.875rem 1.25rem;
  padding-bottom: 0.5rem;
  backdrop-filter: blur(2px);
  background-color: rgba(20, 20, 25, 0.9);
}

.signup h1 {
  font-size: 36px;
  text-align: center;
}
.signup .input {
  width: 100%;
  height: 50px;
  margin: 30px 0px;
  position: relative;
}

.signup .input input {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.592);
  border-radius: 40px;
  color: whitesmoke;
  padding: 20px 45px 20px 20px;
}

.input input::placeholder {
  color: whitesmoke;
  font-weight: 600;
}
.input input:focus {
  box-shadow: 0 0 5px 0 whitesmoke;
}

.input i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.remember-me {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.remember-me label input {
  accent-color: whitesmoke;
  margin: 3px;
}
.remember-me a {
  color: whitesmoke;
  text-decoration: none;
}

.remember-me a:hover {
  text-decoration: underline;
  text-decoration-color: whitesmoke;
  color: whitesmoke;
  font-weight: 600;
}

.btn {
  width: 100%;
  height: 45px;
  border-radius: 40px;
  border: 2px solid var(--main-text-color);
  background-color: #f1be60;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(199, 199, 199, 0.2);
  cursor: pointer;
  margin: 1rem 0;
}
input:focus {
  box-shadow: rgb(0, 0, 0);
}

.btn:hover {
  background-color: black;
  color: orange;
}
.noaccount {
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}
.noaccount a {
  color: whitesmoke;
  text-decoration: none;
}
.noaccount a:hover {
  text-decoration: underline;
  font-weight: 600;
}

.google img {
  width: 40px;
}
.google {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#vaild-pass {
  color: red;
  margin: 1rem 0;
  font-weight: 600;
  font-size: 15px;
}
.email-message {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  color: red;
}
.gender {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.592);
  border-radius: 40px;
  color: whitesmoke;
  padding: 10px 20px;
}
.gender label input {
  margin: 0.5rem;
  accent-color: var(--main-text-color);
}

/* ERROR STYLES */
input.danger {
  border-color: rgb(182, 5, 49) !important;
  box-shadow: 0 0 5px 0 rgb(182, 5, 49) !important;
}

input.success {
  border-color: rgb(5, 182, 93) !important;
  box-shadow: 0 0 5px 0 rgb(5, 182, 93) !important;
}
