@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  border: 0;
  color: inherit;
  font-family: inherit;
}

button {
  text-decoration: none;
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #e2e8f0;
  font-size: 16px;
  min-width: 320px;
  line-height: 1.4;
  margin: 0 auto;
  height: fit-content;
  min-height: 100vh;
  font-style: normal;
  overflow-x: hidden;
	background: url('../images/bg.jpg') center / cover no-repeat;
}

p {
  color: #b3b3b3;
  margin: 0 0 20px;
  line-height: 1.6;
}
@media (max-width: 860px) {
  p {
    margin: 0 0 16px;
  }
}


button {
  outline: none;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

h1 {
  font-size: clamp(1.5rem, 1.1576rem + 1.5217vw, 2.375rem);
  font-weight: 600;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

main {
	width: 100%;
  flex-grow: 1;
	height: 100%;
}

input {
	font-size: clamp(0.8rem, 0.7217rem + 0.3478vw, 1rem);
	font-weight: 400;
	font-family: 'Arial', sans-serif;
}

.wrapper {
	max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(0.9375rem, 0.0815rem + 3.8043vw, 3.125rem);
  display: flex;
  justify-content: center;
	align-items: center;
	height: 100vh;
	overflow-x: hidden;
}

.auth {
	height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
	max-width: 360px;
	margin: 0 auto;
}

.auth__container {
	width: 100%;
}

.auth__content {
	width: 100%;
	text-align: center;
	background-color: rgb(0, 0, 0, 0.2);
	padding: 2.5em 1.6em;
	border-radius: 1em;
	backdrop-filter: blur(10px);
}

.form-fieldset {
	border: 0;
	outline: 0;
	display: block;
}

.form-input {
	width: 100%;
	border: 2px solid #4678d9;
	padding: 1em 1.2em;
	border-radius: 1em;
	margin: 0 0 1.3em;
	display: block;
	background: none;
	color: #ffffff;
}

::placeholder {
	
}

.form-submit {
	border: 0;
	outline: 0;
	display: block;
	width: 100%;
	background: #329ce8;
	color: #ffffff;
	padding: 1em 2em;
	cursor: pointer;
	border-radius: 1em;
	text-transform: uppercase;
	transition: ease 0.3s;
}

.form-submit:hover, 
.form-submit:focus {
	background: #5fb6f4;
}

.auth__heading {
	margin: 0 0 1em;
}
