@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

input::-ms-clear {
  display: none; }

button {
  cursor: pointer; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit; }
/*--------------------*/

body {
  font-family: 'Ubuntu';
  font-size: 24px;
  line-height: normal;
}
.wrapper {
  /* overflow: hidden; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%; 
}
input {
  background-color: #000;
  height: 50px;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  padding-left: 40px;
}

/*--------------------*/

.main_sign {
  background: url('../img/back.png') 0 0/cover no-repeat;
}
.signIn {
  height: 100vh;
}
.signIn_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3%;
}
.signIn_logo {
  margin-bottom: 50px;
}
.signIn_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.signIn_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 23px;
  background: rgba(0, 0, 0, 0.60);
  padding: 0 75px;
  padding-top: 25px;
  margin-bottom: 20px;
}
.signIn_form::before {
  display: none;
}
.signIn_title {
  color: #FFF;
  text-align: center;
  margin-bottom: 20px;
}
.signIn_input {
  display: block;
  border-radius: 8px;
  background: rgba(49, 49, 49, 0.90);
  padding-left: 20px;
  padding-right: 100px;
  font-size: 16px;
}
.ft-inp {
  margin-bottom: 10px;
}
.signIn_button {
  margin-top: 35px;
  border-radius: 60px;
  background: #E13C52;
  padding: 10px 35px;
  color: #FFF;
  font-weight: 500;
  display: flex;
  margin-bottom: 25px;
}
.signIn_forgot {
  color: #838199;
  font-size: 16px;
  margin-bottom: 30px;
}
.signIn_forgot:hover {
  text-decoration: underline;
}
.signIn_back {
  color: #FFF;
  font-weight: 500;
}

/*--------------------*/

/* MOBILE */
@media (max-width: 767.98px) {
  .signIn_body {
    padding-top: 7%;
  }
}

/* MOBILE SMALL */
@media (max-width: 576px) {
  .signIn_form {
    padding: 0 25px;
    padding-top: 25px;
  }
  .signIn_body {
    padding-top: 10%;
  }
}

@media (max-width: 450px) {
  .signIn_form {
    padding: 0 10px;
    padding-top: 25px;
  }
  
}

@media (max-width: 380px) {
  .signIn_input {
    padding-right: 45px;
  }
}

