* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.15) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  min-height: 100vh;
}

.h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  font-family: "Cairo", system-ui;
}

.wrraper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrraper .container {
  padding: 0.5rem;
  width: min(500px, 100vw);
  height: 70%;
  background: radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.062745098) 0%, rgba(255, 255, 255, 0.062745098) 50%, rgba(255, 255, 255, 0.062745098) 100%);
  border-radius: 1rem;
}
.wrraper .container .form-header {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrraper .container .form-header .logo {
  width: 10%;
}
.wrraper .container .form-header .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.wrraper .container .form-options {
  width: 100%;
  height: 15%;
}
.wrraper .container .form-options h3 {
  font-weight: 400;
  text-transform: capitalize;
  height: 25%;
  margin-left: 0.5rem;
}
.wrraper .container .form-options .options {
  height: 75%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-around;
}
.wrraper .container .form-options .options .option {
  cursor: pointer;
  width: 45%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
  padding-inline: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #FFD700;
  transition: all 300ms ease-in-out;
}
.wrraper .container .form-options .options .option:hover {
  border-color: #9D9D9D;
}
.wrraper .container .form-options .options .option img {
  width: 10%;
  height: auto;
  display: block;
}
.wrraper .container .form-options .options .option p {
  font-family: "Cairo", sans-serif;
  font-size: 0.825rem;
  font-weight: 400;
}
.wrraper .container .seprater {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrraper .container .seprater h3 {
  color: #9D9D9D;
  font-family: "Poopins", sans-serif;
  position: relative;
  letter-spacing: 1px;
}
.wrraper .container .seprater h3::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  left: -30px;
  display: block;
  height: 3px;
  width: 25px;
  background-color: currentColor;
}
.wrraper .container .seprater h3::before {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: -30px;
  display: block;
  height: 3px;
  width: 25px;
  background-color: currentColor;
}
.wrraper .container form {
  width: 100%;
  height: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.wrraper .container form .errors {
  direction: rtl;
  padding-inline-start: 1rem;
  color: rgb(199, 1, 1);
  font-weight: 600;
}
.wrraper .container form div {
  width: 100%;
  height: min(30px, 30%);
}
.wrraper .container form div input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #9D9D9D;
  padding-inline-start: 1rem;
}
.wrraper .container form div input::-moz-placeholder {
  color: #9D9D9D;
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
}
.wrraper .container form div input::placeholder {
  color: #9D9D9D;
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
}
.wrraper .container form .submit {
  width: 80%;
  border: none;
  background-color: #FFD700;
  color: rgb(0, 0, 0);
  font-family: "Cairo", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 600;
  padding-block: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.wrraper .container form .submit:hover {
  width: 60%;
}
.wrraper .container form .login {
  font-family: "Cairo", sans-serif;
}
.wrraper .container form .login a {
  text-decoration: none;
  color: #5B86E5;
  margin-left: 0.5rem;
}/*# sourceMappingURL=register.css.map */