input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
button:focus {
	transform: scale(1.05) !important;
	border: solid 1px #cbcbcb;
}

.small-hover{
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0,0,0,0);
}
.small-hover:hover{
	transform: scale(1.05) !important;
}

.shadow{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

html, body{
	font-family: sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	z-index: -2;
	overflow-x: clip;
	background: linear-gradient(135deg, rgb(1, 146, 224) 0%, rgba(0, 59, 129, 1) 100%) no-repeat fixed center;
	height: 100%;
	color: white;
}




.nonActive{
	cursor: default!important;
	color: #5d5d5d!important;
	border-bottom-color: #5d5d5d!important;
}

.form__group {
  position: relative;
  padding: .8em 0 0;
  margin-top: 5px!important;
  width: 90%;
}

.form__field, .form__field::placeholder, .form__field:placeholder-shown {
	font-family: inherit;
	width: 100%;
	border: 0;
	border-bottom: 2px solid #9b9b9b;
	outline: 0;
	font-size: 1.3em;
	color: white;
	padding: 7px 0;
	background: transparent;
	transition: border-color 0.2s;
}
.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 1.3em;
    cursor: text;
    top: 20px;
  }


.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1em;
  color: #9b9b9b;
}

.form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1em;
    color: #0192e0;
    ./*font-weight:700;*/
  }
.form__field:focus {
  /*padding-bottom: 6px;
  font-weight:700;
  border-width: 3px*/;
  border-image: linear-gradient(to right, #0192e0,#0192e0);
  border-image-slice: 1;
}
/* reset input */
.form__field, .form__field:required, .form__field:invalid { box-shadow:none; }




.holder{
	background-color: #282828;
	margin: 10px;
	padding: 5px;
	border-radius: 10px;
	width: 400px;
	text-align: center;
	margin: auto;
}


.btn{
	background-color: #0192e0;
	padding: 3px 20px;
	color: white;
	border-radius: 5px;
	font-family: sans-serif;
	border:none;
	font-weight: bold;
	cursor: pointer;
	font-size: 16px;
}





.shadow1{
	z-index:2;
	position: fixed;
	width:100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.6);
	display:flex;
	justify-content: center;
	align-items: center;
	overflow-y: auto;
}
.main-modal{
	width:340px;
	background: #282828;
	border-radius:15px;
	display:flex;
	justify-content: center;
	align-items:center;
	flex-direction: column;
}

.hideModal{
	z-index:-1;
	opacity:0;
	animation: hide .25s;

transform: scale(0);
}@keyframes hide {
  from{
      z-index:534435345;
transform: scale(1);
    opacity:1;
  } to{
      z-index:-1;
transform: scale(0);
    opacity: 0;
  }
}
.showModal{
	opacity:1;
	z-index:99999999999999999999999999;
	animation: show .2s;
	transform: scale(1);
}
@keyframes show {
	from{

		transform: scale(0);
		opacity:0;
		z-index:-1;
	} to{

		transform: scale(1);
		opacity: 1;
		z-index:534435345;
	}
}

.premod{
	z-index:-1;opacity:0;
}
