@import url('https://rsms.me/inter/inter-ui.css');

::selection {
  background: #2D2F36;
}
::-webkit-selection {
  background: #2D2F36;
}
::-moz-selection {
  background: #2D2F36;
}
body {
  background-color: #C1CDDA;
  background-image: url('./images/login.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  -moz-background-size: 100%; /* Firefox 3.6+ */
  -webkit-background-size: 100%; /* Safari 3.1+ и Chrome 4.0+ */
  -o-background-size: 100%; /* Opera 9.6+ */
  background-size: 100%;
  font-family: 'Inter UI', sans-serif;
  margin: 0;
  padding: 20px;
}
.body-simple {
	background-size: cover;
}
.page {
  background: #e2e2e5;
  display: flex;

  height: calc(100% - 40px);
  position: absolute;
  place-content: center;
  width: calc(100% - 40px);
}
@media (max-width: 767px) {
  .page {
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.container {
  display: flex;
  height: 320px;
  margin: 0 auto;
  width: 640px;
}

.container-simple {
	display: block;
	height: 50vh;
	width: 100%;
	margin-top: 25vh;
	position: relative;
}
@media (max-width: 767px) {
  .container {

    height: 630px;
    width: 320px;
  }
}
.right {
  border-radius: 5px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #F1F1F2;
  position: relative;
  width: 50%;
  margin: 0 auto;
  box-sizing: border-box;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  display: flex;
  transition: box-shadow .3s ease;
  z-index: 10;
}
.right:before {
  content: "";
  background-image: url('./images/login.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  z-index: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
@media (max-width: 767px) {
  .right {
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    max-height: 350px;
  }
}
svg {
  position: absolute;
  width: 320px;
}
path {
  fill: none;
  stroke: url(#linearGradient);;
  stroke-width: 4;
  stroke-dasharray: 240 1386;
}
.form {
  margin: 40px;
  position: absolute;
}
label {
  color:  #c2c2c5;
  display: block;
  font-size: 14px;
  height: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.label-simple {
	font-size: 35px;
	height: 40px;
}
input {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}

.input-simple {
	height: 70px;
	font-size: 50px;
	background: rgba(255,255,255,0.8);
	padding: 5px;
	border-radius: 10px;
	color: black;
}
input::-moz-focus-inner {
  border: 0;
}
#submit {
  color: #c2c2c5; /* New value by kolysvit */
  margin-top: 40px;
  transition: color 300ms;
}
#submit:hover { /* New style by kolysvit */
  color: #3498DB;
}
#submit:focus {
  color: #f2f2f2;
}
#submit:active {
  color: #d0d0d2;
}

input::placeholder { /* New style by kolysvit */
    color: #c2c2c5;
    opacity: 1; /* Firefox */
}
input[type="submit"]:hover { /* New style by kolysvit */
    cursor: pointer;
}
input:hover::placeholder { /* New style by kolysvit */
    color: #3498DB;
}
