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

@font-face {
  font-family: fonts;
  src: url(../fonts/fonts/ttf/OtomanopeeOne-Regular.ttf);
}

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

/* Variable */
:root {
  --box-shadow: 0 0 10px hsl(0, 0%, 0%, 0.15);
  --primary-font: fonts;
  --secondary-font: K2D;
  --border-and-color: 1px solid rgba(38, 160, 218, 1);
  --text-color-black: black;
  --background-color: rgba(38, 160, 218, 1);
  --text-color-white: rgba(255, 255, 255, 1);
  --text-color-blue: rgba(38, 160, 218, 1);
  --item-color: rgba(255, 184, 0, 1);
  --shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
}

/* Signin Form Start */
.form_wrapper {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  font-family: var(--secondary-font);
  visibility: hidden;
  user-select: none;
  transition: 0.5s;
  z-index: 999 !important;
}

.form_wrapper.active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
}

.forms .form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 630px;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  background: #fff;
}

.forms .form.signup {
  opacity: 0;
  pointer-events: none;
}

.forms .signup a {
  text-decoration: none;
}

.forms.show-signup .form.signup {
  opacity: 1;
  pointer-events: auto;
}

.forms header {
  font-family: var(--primary-font);
  padding-bottom: 20px;
  border-bottom: 1px solid black;
  font-size: 35px;
  font-weight: 600;
  color: #232836;
  text-align: center;
}

.forms form {
  margin-top: 40px;
}

.forms .form .field {
  position: relative;
  height: 40px;
  width: 100%;
  margin-top: 15px;
  border-radius: 6px;
}

.forms .field input,
.forms .field button {
  height: 100%;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
}

.forms .field input {
  outline: none;
  font-size: 16px;
  font-family: var(--secondary-font);
  padding: 0px 15px !important;
  border: 1px solid#CACACA;
}

.forms .field input:focus {
  border: 2px solid skyblue;
  box-shadow: 0 0 10px hsl(0, 0%, 0%, 0.15);
}

.forms .field button {
  font-size: 22px;
  color: #fff;
  background-color: #3e9ef3;
  transition: all 0.3s ease;
  cursor: pointer;
}

.forms .field button:hover {
  background-color: #016dcb;
}

.forms .form-link {
  margin-top: 10px;
}
.forms .form-check-label a {
  color: var(--text-color-blue);
}

.forms .form-content .form-link a {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: #060606;
}

.forms .form-content .form-link .sign-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color-blue);
}

.forms .form-link a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color-blue);
}

.forms .form-link a {
  text-decoration: none;
}

.forms .form-link .sign-link {
  font-size: 22px !important;
  font-family: var(--secondary-font);
}

.forms .media-options p {
  padding: 10px 0px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.social_link {
  align-items: center;
  justify-content: center;
  display: flex;
}
.social_icon {
  font-size: 16px;
  margin: 0px 7px;
  border: 1px solid black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}

.forms a.google {
  border: 1px solid #cacaca;
}

.forms a.google span {
  font-size: 22px;
  font-family: var(--secondary-font);
  font-weight: 500;
  opacity: 0.6;
  color: #232836;
}

.forms .form-link span {
  font-size: 22px;
  font-family: var(--secondary-font);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(124, 137, 146, 1);
}

.forms .form-link span a {
  font-size: 22px;
  font-family: var(--secondary-font);
  padding-left: 10px;
  color: var(--text-color-blue);
}

.forms .form-check {
  font-size: 16px;
  font-family: var(--secondary-font);
}

@media screen and (max-width: 400px) {
  .forms .form {
    padding: 20px 8px;
  }
}
/* Sign in Form End */
