@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --primary: #800080;
  --secondary: #cb6ce6;
  --blue: #3213d1;
  --white: #fff;
  --black: #000;
  --card: #2c2b2c;
  --text: #666;
  --strip: 192px;
  --heigh: calc( 100vh - var(--strip) );
  --col: calc(var(--heigh) / 9 );
  --col_: calc(var(--heigh) / 5.5);
}

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

body {
  font-family: "Outfit", sArial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
}

.bg_login {
  height: 100vh;
  width: 100%;
  background: url("../media/login/bg-new.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

._newLogin {
  max-width: 400px;
  width: 100%;
  padding: 15px;
}
._newLogin ._newLogin_wrap {
  padding: 15px;
}
._newLogin ._newLogin_wrap .logo_ne {
  margin-bottom: 45px;
}
._newLogin ._newLogin_wrap .logo_ne img {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  filter: grayscale(1) brightness(0) invert(1);
}

.form_newlog .form-group {
  margin-bottom: 15px;
}
.form_newlog .form-group label {
  display: none;
  margin-bottom: 8px;
}
.form_newlog .form-group .form-control {
  height: 45px;
  background: transparent;
  border: 1px solid #f4f4f4;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  outline: none;
  color: var(--white);
}
.form_newlog .form-group .form-control::-moz-placeholder {
  color: var(--white);
}
.form_newlog .form-group .form-control::placeholder {
  color: var(--white);
}
.form_newlog .btn {
  margin-bottom: 10px;
}
.form_newlog .btn button {
  width: 100%;
  background: var(--white);
  color: var(--black);
  padding: 8px;
  font-weight: 600;
  border: 0;
  outline: none;
  height: 45px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
}
.form_newlog .htruble {
  text-align: right;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.server_error {
  margin-bottom: 15px;
  background: #fff;
  padding: 5px;
}
.server_error .error p {
  color: red;
  font-size: 14px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */