@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-red-color: #0057b7;
  --design-red-color: #0071ee;
}

body {
  margin: 0;
  padding: 0;

  font-family: "Vazirmatn", sans-serif;
}

.login {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;

  width: 100vw;
  height: 100vh;
}

.login .base {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;

  border: 1px solid #e0e0e2;
  border-radius: 8px;

  width: 30vw;
  height: 55vh;
}

.login .base .logo img {
  width: 10vh;
}

.login .base .title {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;

  font-size: 2.5vh;
  font-weight: 700;
  width: 95%;
}

.login .base .inputs {
  height: 15vh;
  width: 25vw;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}

.login .base .inputs div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  direction: rtl;

  width: 100%;
}

.login .base .inputs div label {
  width: 100%;

  margin-bottom: 0.5vh;

  font-size: 1.5vh;
}

.login .base .inputs div input {
  display: flex;

  font-family: "Vazirmatn", sans-serif;
  font-weight: 700;

  text-align: center;

  border: 1px solid #e0e0e2;
  border-radius: 16px;

  height: 3.5vh;
  width: 100%;

  padding: 0.5vh;
}

.login .base .sub-btn {
  width: 25vw;
}

.login .base .sub-btn button {
  background: var(--design-red-color);
  color: #fff;

  border: none;
  border-radius: 16px;

  font-family: "Vazirmatn", sans-serif;
  font-weight: 700;

  margin-top: 2vh;

  height: 5vh;
  width: 100%;
}

.login .base .sub-btn button:hover {
  cursor: pointer;
}

.login .base .buttons {
  display: flex;
  flex-direction: column;

  text-align: right;
  width: 75%;
}

.login .base .buttons a {
  font-family: "Vazirmatn", sans-serif;
  font-weight: 500;
  font-size: 1.3vh;

  color: #656565;
  text-decoration: underline;
}

.login .base .foot-text {
  direction: rtl;
  font-size: 1.5vh;
}

.login .base .foot-text a {
  margin-left: 0.2vh;
  margin-right: 0.2vh;
  text-decoration: none;
  color: #00b4d3;
}

@media only screen and (max-width: 1220px) {
  .login .base {
    width: 90vw;
  }
  .login .base .inputs {
    width: 80vw;
  }
  .login .base .sub-btn {
    width: 80vw;
  }
}
