@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@281&display=swap");

* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.main {
  width: 100%;
  display: flex;
  height: 100vh;
}

.container-1 {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-1 h1 {
  font-weight: 500;
}

.container-2 {
  width: 50%;
  display: flex;
  border-radius: 45px 0 0 45px;
}

.name {
  padding: 5% 0 5% 0;
}

.name input {
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid gray;
}

.email {
  padding: 5% 0 5% 0;
}

.email input {
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid gray;
}

.password {
  padding: 5% 0 5% 0;
}

.password input {
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid gray;
}

.checkB {
  padding: 0px 0 10px 0;
  font-size: 13px;
}
.checkB a {
  color: black;
}

.signUp {
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: none;
  background-color: #007bff;
  color: white;
  font-weight: 600;
  border: 2px solid #007bff;
  transition: 0.3s ease;
  margin-top: 20px;
}

.signUp:hover {
  background-color: white;
  color: black;
  border: 2px solid #007bff;
  cursor: pointer;
}

.or {
  display: flex;
  flex-direction: row;
  padding: 30px 0 30px 0;
  font-size: 13px;
}

.or:before,
.or:after {
  content: "";
  flex: 1 1;
  border-bottom: 2px solid #000;
  margin: auto;
}

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid gray;
  background-color: white;
  font-weight: 500;
  transition: 0.3s ease;
}

.btns button:hover {
  background-color: #007bff;
  color: white;
}

.signIn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px 0;
}

.signIn a {
  text-decoration: none;
  color: #0f3dde;
}

@media only screen and (max-width: 700px) {
  .container-1 {
    width: 100%;
    z-index: 1;
  }

  .container-2 {
    display: flex;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
  }
}
