* {
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}

body {
  display: flex;
  position: absolute;
  width: 100%;
  height: fit-content;
  justify-content: space-between;
  margin: 0;
}

.login_form,
.signup_form {
  width: 60%;
  margin: 0 20px 20px;
}

img {
  width: 60%;
}

.s_t {
  display: flex;
  justify-content: center;
}

.s_t label {
  margin: 10px;
}

.p_t {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.p_t label {
  margin: 10px;
}

.note {
  display: flex;
  justify-content: center;
  align-items: center;
}

label input {
  opacity: 0;
  position: absolute;
  width: 100px;
  height: 100px;
  margin: 0;
}

label div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100px;
  height: 100px;
  background-color: #c0c0c0;
  border: 5px solid #c0c0c0;
  border-radius: 100%;
}

input:checked+div {
  background-color: black;
}


input:checked+div p {
  color: white;
}

.input_box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid black;
  margin: 30px 0;
}

.input_box ::placeholder {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  color: black;
  transition: .5s;
  font-size: medium;
}

.input_box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: black;
  padding: 0 5px 0 35px;
  font-size: large;
}

.input_box .icon {
  position: absolute;
  left: 8px;
  color: black;
}

.form h1,
.login_form {
  text-align: center;
  color: black;
}

.login {
  width: 100%;
}

.login input,
.signup input {
  width: 100%;
  height: 40px;
  outline: none;
  border: none;
  color: white;
  background-color: black;
  border-radius: 20px;
}

p {
  color: black;
}

.images_box {
  position: relative;
  border: 2px dashed black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #c0c0c0;
}

.images_box * {
  color: black;
}

.images_box input {
  position: absolute;
  color: transparent;
  width: 100%;
  height: 100%;
}

.images_box input::-webkit-file-upload-button {
  color: transparent;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.wallpaper {
  background-image: url("../images/store.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.area {
  width: 90%;
  height: 200px;
  background: transparent;
  border-radius: 7px;
  outline: none;
  margin: 15px;
}

@media (max-width:694px) {
  body {
    flex-direction: column;
    align-items: center;
  }

  .login_form,
  .signup_form {
    width: 80%;
    height: 250%;
  }
} 