*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}
/* Reset Select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #ffffff;
  background-image: none;
}

/* Remove IE arrow */
select::-ms-expand {
  display: none;
}

/* Custom Select */
.select {
  position: relative;
  display: flex;
  width: 100%;
  height: 3em;
  line-height: 3;
  background: none;
  overflow: hidden;
  /* border-radius: .25em; */
}

select {
  flex: 1;
  padding: 0 .6rem;
  /* padding: 0.5rem 0.7rem; */
  cursor: pointer;
  position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	font-size: 1.0rem;
	color: #555;
  font-family: 'poppins', sans-serif;
}

/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: #ffffff;
  cursor: pointer;
  pointer-events: none;
  transition: .25s all ease;
}

/* Transition */
.select:hover::after {
  color: #f39c12;
}

.wave{
	position: fixed;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: -1;
}

.container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap :7rem;
    padding: 0 2rem;
}

.img{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.login-content{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.img img{
	width: 500px;
}

form{
	width: 360px;
}

.login-content img{
    height: 100px;
}

.login-content h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 2.9rem;
}

.login-content .input-div{
	  position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one{
	margin-top: 0;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input-div > div{
  position: relative;
	height: 45px;
}

.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 18px;
	transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #f05a22;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #f05a22;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.0rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}

.input-div.pass{
	margin-bottom: 4px;
}

a{
	display: block;
	text-align: right;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

a:hover{
	color: #f05a22;
}

.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #8b0500, #f05a22, #8b0500);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	background-position: right;
}
.content-error h1 {
    font-size: 35px;
    color: #444;
    text-transform:uppercase;
}
.content-error .counter {
    color: #006DF0;
}
.content-error {
    text-align: center;
    margin: 0px 20px;
}
.content-error p {
    font-size: 14px;
    color: #444;
    line-height: 24px;
}
.alert {
  --bs-alert-bg: transparent;
  /* --bs-alert-padding-x: 0.5rem; */
  --bs-alert-padding-y: 1.25rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.35rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 500;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.5625rem 1rem;
}

.alert-primary {
  --bs-alert-color: #003a91;
  --bs-alert-bg: #ccdffc;
  --bs-alert-border-color: #b3d0fb;
}
.alert-primary .alert-link {
  color: #002e74;
}

.alert-secondary {
  --bs-alert-color: #3f0077;
  --bs-alert-bg: #e1ccf4;
  --bs-alert-border-color: #d2b3ee;
}
.alert-secondary .alert-link {
  color: #32005f;
}

.alert-success {
  --bs-alert-color: #00673f;
  --bs-alert-bg: #cceee1;
  --bs-alert-border-color: #b3e6d2;
}
.alert-success .alert-link {
  color: #005232;
}

.alert-info {
  --bs-alert-color: #007c80;
  --bs-alert-bg: #ccf5f7;
  --bs-alert-border-color: #b3f1f2;
}
.alert-info .alert-link {
  color: #006366;
}

.alert-warning {
  --bs-alert-color: #926100;
  --bs-alert-bg: #fdeccc;
  --bs-alert-border-color: #fce3b3;
}
.alert-warning .alert-link {
  color: #754e00;
}

.alert-danger {
  --bs-alert-color: #8b0d00;
  --bs-alert-bg: #fad0cc;
  --bs-alert-border-color: #f8b9b3;
}
.alert-danger .alert-link {
  color: #6f0a00;
}

.alert-light {
  --bs-alert-color: #919497;
  --bs-alert-bg: #fcfdfe;
  --bs-alert-border-color: #fbfcfe;
}
.alert-light .alert-link {
  color: #747679;
}

.alert-dark {
  --bs-alert-color: #14181e;
  --bs-alert-bg: #d3d4d6;
  --bs-alert-border-color: #bcbfc2;
}
.alert-dark .alert-link {
  color: #101318;
}

.alert-black {
  --bs-alert-color: black;
  --bs-alert-bg: #cccccc;
  --bs-alert-border-color: #b3b3b3;
}
.alert-black .alert-link {
  color: black;
}

.alert-white {
  --bs-alert-color: #999999;
  --bs-alert-bg: white;
  --bs-alert-border-color: white;
}
.alert-white .alert-link {
  color: #7a7a7a;
}

.alert-red {
  --bs-alert-color: #8b0d00;
  --bs-alert-bg: #fad0cc;
  --bs-alert-border-color: #f8b9b3;
}
.alert-red .alert-link {
  color: #6f0a00;
}

.alert-orange {
  --bs-alert-color: #943c00;
  --bs-alert-bg: #fde0cc;
  --bs-alert-border-color: #fdd1b3;
}
.alert-orange .alert-link {
  color: #763000;
}

.alert-yellow {
  --bs-alert-color: #926100;
  --bs-alert-bg: #fdeccc;
  --bs-alert-border-color: #fce3b3;
}
.alert-yellow .alert-link {
  color: #754e00;
}

.alert-green {
  --bs-alert-color: #00673f;
  --bs-alert-bg: #cceee1;
  --bs-alert-border-color: #b3e6d2;
}
.alert-green .alert-link {
  color: #005232;
}

.alert-teal {
  --bs-alert-color: #007059;
  --bs-alert-bg: #ccf1ea;
  --bs-alert-border-color: #b3eadf;
}
.alert-teal .alert-link {
  color: #005a47;
}

.alert-cyan {
  --bs-alert-color: #007c80;
  --bs-alert-bg: #ccf5f7;
  --bs-alert-border-color: #b3f1f2;
}
.alert-cyan .alert-link {
  color: #006366;
}

.alert-blue {
  --bs-alert-color: #003a91;
  --bs-alert-bg: #ccdffc;
  --bs-alert-border-color: #b3d0fb;
}
.alert-blue .alert-link {
  color: #002e74;
}

.alert-indigo {
  --bs-alert-color: #35008b;
  --bs-alert-bg: #deccfa;
  --bs-alert-border-color: #cdb3f8;
}
.alert-indigo .alert-link {
  color: #2a006f;
}

.alert-purple {
  --bs-alert-color: #3f0077;
  --bs-alert-bg: #e1ccf4;
  --bs-alert-border-color: #d2b3ee;
}
.alert-purple .alert-link {
  color: #32005f;
}

.alert-pink {
  --bs-alert-color: #880035;
  --bs-alert-bg: #f9ccde;
  --bs-alert-border-color: #f7b3cd;
}
.alert-pink .alert-link {
  color: #6d002a;
}

.alert-red-soft {
  --bs-alert-color: #918688;
  --bs-alert-bg: #fcf9f9;
  --bs-alert-border-color: #fbf6f7;
}
.alert-red-soft .alert-link {
  color: #746b6d;
}

.alert-orange-soft {
  --bs-alert-color: #928b88;
  --bs-alert-bg: #fdfaf9;
  --bs-alert-border-color: #fbf8f7;
}
.alert-orange-soft .alert-link {
  color: #756f6d;
}

.alert-yellow-soft {
  --bs-alert-color: #918f88;
  --bs-alert-bg: #fcfcf9;
  --bs-alert-border-color: #fbfaf7;
}
.alert-yellow-soft .alert-link {
  color: #74726d;
}

.alert-green-soft {
  --bs-alert-color: #838f8e;
  --bs-alert-bg: #f8fcfb;
  --bs-alert-border-color: #f4fafa;
}
.alert-green-soft .alert-link {
  color: #697272;
}

.alert-teal-soft {
  --bs-alert-color: #839091;
  --bs-alert-bg: #f8fcfc;
  --bs-alert-border-color: #f4fbfb;
}
.alert-teal-soft .alert-link {
  color: #697374;
}

.alert-cyan-soft {
  --bs-alert-color: #839195;
  --bs-alert-bg: #f8fcfe;
  --bs-alert-border-color: #f4fbfd;
}
.alert-cyan-soft .alert-link {
  color: #697477;
}

.alert-blue-soft {
  --bs-alert-color: #838b97;
  --bs-alert-bg: #f8fafe;
  --bs-alert-border-color: #f4f8fe;
}
.alert-blue-soft .alert-link {
  color: #696f79;
}

.alert-indigo-soft {
  --bs-alert-color: #888596;
  --bs-alert-bg: #f9f8fe;
  --bs-alert-border-color: #f7f5fe;
}
.alert-indigo-soft .alert-link {
  color: #6d6a78;
}

.alert-purple-soft {
  --bs-alert-color: #898594;
  --bs-alert-bg: #faf8fd;
  --bs-alert-border-color: #f7f5fd;
}
.alert-purple-soft .alert-link {
  color: #6e6a76;
}

.alert-pink-soft {
  --bs-alert-color: #91858e;
  --bs-alert-bg: #fcf8fb;
  --bs-alert-border-color: #fbf5f9;
}
.alert-pink-soft .alert-link {
  color: #746a72;
}

.alert-primary-soft {
  --bs-alert-color: #838b97;
  --bs-alert-bg: #f8fafe;
  --bs-alert-border-color: #f4f8fe;
}
.alert-primary-soft .alert-link {
  color: #696f79;
}

.alert-secondary-soft {
  --bs-alert-color: #898594;
  --bs-alert-bg: #faf8fd;
  --bs-alert-border-color: #f7f5fd;
}
.alert-secondary-soft .alert-link {
  color: #6e6a76;
}

.alert-success-soft {
  --bs-alert-color: #838f8e;
  --bs-alert-bg: #f8fcfb;
  --bs-alert-border-color: #f4fafa;
}
.alert-success-soft .alert-link {
  color: #697272;
}

.alert-info-soft {
  --bs-alert-color: #839195;
  --bs-alert-bg: #f8fcfe;
  --bs-alert-border-color: #f4fbfd;
}
.alert-info-soft .alert-link {
  color: #697477;
}

.alert-warning-soft {
  --bs-alert-color: #918f88;
  --bs-alert-bg: #fcfcf9;
  --bs-alert-border-color: #fbfaf7;
}
.alert-warning-soft .alert-link {
  color: #74726d;
}

.alert-danger-soft {
  --bs-alert-color: #918688;
  --bs-alert-bg: #fcf9f9;
  --bs-alert-border-color: #fbf6f7;
}
.alert-danger-soft .alert-link {
  color: #746b6d;
}
.fst-italic {
	font-style: italic !important;
  }
.fst-normal {
font-style: normal !important;
}

.fw-light {
font-weight: 300 !important;
}

.fw-lighter {
font-weight: lighter !important;
}

.fw-normal {
font-weight: 400 !important;
}

.fw-bold {
font-weight: 500 !important;
}

.fw-semibold {
font-weight: 600 !important;
}

.fw-bolder {
font-weight: bolder !important;
}

/* rtl:end:remove */
.text-primary {
--bs-text-opacity: 1;
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
--bs-text-opacity: 1;
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
--bs-text-opacity: 1;
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
--bs-text-opacity: 1;
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
--bs-text-opacity: 1;
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
--bs-text-opacity: 1;
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
--bs-text-opacity: 1;
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
--bs-text-opacity: 1;
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
--bs-text-opacity: 1;
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
--bs-text-opacity: 1;
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-red {
--bs-text-opacity: 1;
color: rgba(var(--bs-red-rgb), var(--bs-text-opacity)) !important;
}

.text-orange {
--bs-text-opacity: 1;
color: rgba(var(--bs-orange-rgb), var(--bs-text-opacity)) !important;
}

.text-yellow {
--bs-text-opacity: 1;
color: rgba(var(--bs-yellow-rgb), var(--bs-text-opacity)) !important;
}

.text-green {
--bs-text-opacity: 1;
color: rgba(var(--bs-green-rgb), var(--bs-text-opacity)) !important;
}

.text-teal {
--bs-text-opacity: 1;
color: rgba(var(--bs-teal-rgb), var(--bs-text-opacity)) !important;
}

.text-cyan {
--bs-text-opacity: 1;
color: rgba(var(--bs-cyan-rgb), var(--bs-text-opacity)) !important;
}

.text-blue {
--bs-text-opacity: 1;
color: rgba(var(--bs-blue-rgb), var(--bs-text-opacity)) !important;
}

.text-indigo {
--bs-text-opacity: 1;
color: rgba(var(--bs-indigo-rgb), var(--bs-text-opacity)) !important;
}

.text-purple {
--bs-text-opacity: 1;
color: rgba(var(--bs-purple-rgb), var(--bs-text-opacity)) !important;
}

.text-pink {
--bs-text-opacity: 1;
color: rgba(var(--bs-pink-rgb), var(--bs-text-opacity)) !important;
}

.text-red-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-red-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-orange-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-orange-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-yellow-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-yellow-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-green-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-green-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-teal-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-teal-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-cyan-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-cyan-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-blue-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-blue-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-indigo-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-indigo-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-purple-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-purple-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-pink-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-pink-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-primary-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-primary-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-secondary-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-success-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-success-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-info-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-info-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-warning-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-warning-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-danger-soft {
--bs-text-opacity: 1;
color: rgba(var(--bs-danger-soft-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
--bs-text-opacity: 1;
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
--bs-text-opacity: 1;
color: #a7aeb8 !important;
}

.text-black-50 {
--bs-text-opacity: 1;
color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
--bs-text-opacity: 1;
color: rgba(255, 255, 255, 0.5) !important;
}  
.text-center {
text-align: center !important;
}
.text-xs {
font-size: 0.75rem !important;
}
.img-fluid {
max-width: 100%;
height: auto;
}
.img-thumbnail {
padding: 0.25rem;
background-color: #f2f6fc;
border: 1px solid var(--bs-border-color);
border-radius: 0.35rem;
max-width: 100%;
height: auto;
}
.m-0 {
margin: 0 !important;
}

.m-1 {
margin: 0.25rem !important;
}

.m-2 {
margin: 0.5rem !important;
}

.m-3 {
margin: 1rem !important;
}

.m-4 {
margin: 1.5rem !important;
}

.m-5 {
margin: 2.5rem !important;
}

.m-10 {
margin: 6rem !important;
}

.m-15 {
margin: 9rem !important;
}

.m-auto {
margin: auto !important;
}

.mx-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}

.mx-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}

.mx-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}

.mx-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}

.mx-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}

.mx-5 {
margin-right: 2.5rem !important;
margin-left: 2.5rem !important;
}

.mx-10 {
margin-right: 6rem !important;
margin-left: 6rem !important;
}

.mx-15 {
margin-right: 9rem !important;
margin-left: 9rem !important;
}

.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}

.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}

.my-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}

.my-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}

.my-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}

.my-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}

.my-5 {
margin-top: 2.5rem !important;
margin-bottom: 2.5rem !important;
}

.my-10 {
margin-top: 6rem !important;
margin-bottom: 6rem !important;
}

.my-15 {
margin-top: 9rem !important;
margin-bottom: 9rem !important;
}

.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}

.mt-0 {
margin-top: 0 !important;
}

.mt-1 {
margin-top: 0.25rem !important;
}

.mt-2 {
margin-top: 0.5rem !important;
}

.mt-3 {
margin-top: 1rem !important;
}

.mt-4 {
margin-top: 1.5rem !important;
}

.mt-5 {
margin-top: 2.5rem !important;
}

.mt-10 {
margin-top: 6rem !important;
}

.mt-15 {
margin-top: 9rem !important;
}

.mt-auto {
margin-top: auto !important;
}

.me-0 {
margin-right: 0 !important;
}

.me-1 {
margin-right: 0.25rem !important;
}

.me-2 {
margin-right: 0.5rem !important;
}

.me-3 {
margin-right: 1rem !important;
}

.me-4 {
margin-right: 1.5rem !important;
}

.me-5 {
margin-right: 2.5rem !important;
}

.me-10 {
margin-right: 6rem !important;
}

.me-15 {
margin-right: 9rem !important;
}

.me-auto {
margin-right: auto !important;
}

.mb-0 {
margin-bottom: 0 !important;
}

.mb-1 {
margin-bottom: 0.25rem !important;
}

.mb-2 {
margin-bottom: 0.5rem !important;
}

.mb-3 {
margin-bottom: 1rem !important;
}

.mb-4 {
margin-bottom: 1.5rem !important;
}

.mb-5 {
margin-bottom: 2.5rem !important;
}

.mb-10 {
margin-bottom: 6rem !important;
}

.mb-15 {
margin-bottom: 9rem !important;
}

.mb-auto {
margin-bottom: auto !important;
}

.ms-0 {
margin-left: 0 !important;
}

.ms-1 {
margin-left: 0.25rem !important;
}

.ms-2 {
margin-left: 0.5rem !important;
}

.ms-3 {
margin-left: 1rem !important;
}

.ms-4 {
margin-left: 1.5rem !important;
}

.ms-5 {
margin-left: 2.5rem !important;
}

.ms-10 {
margin-left: 6rem !important;
}

.ms-15 {
margin-left: 9rem !important;
}

.ms-auto {
margin-left: auto !important;
}

.m-n1 {
margin: -0.25rem !important;
}

.m-n2 {
margin: -0.5rem !important;
}

.m-n3 {
margin: -1rem !important;
}

.m-n4 {
margin: -1.5rem !important;
}

.m-n5 {
margin: -2.5rem !important;
}

.m-n10 {
margin: -6rem !important;
}

.m-n15 {
margin: -9rem !important;
}

.mx-n1 {
margin-right: -0.25rem !important;
margin-left: -0.25rem !important;
}

.mx-n2 {
margin-right: -0.5rem !important;
margin-left: -0.5rem !important;
}

.mx-n3 {
margin-right: -1rem !important;
margin-left: -1rem !important;
}

.mx-n4 {
margin-right: -1.5rem !important;
margin-left: -1.5rem !important;
}

.mx-n5 {
margin-right: -2.5rem !important;
margin-left: -2.5rem !important;
}

.mx-n10 {
margin-right: -6rem !important;
margin-left: -6rem !important;
}

.mx-n15 {
margin-right: -9rem !important;
margin-left: -9rem !important;
}

.my-n1 {
margin-top: -0.25rem !important;
margin-bottom: -0.25rem !important;
}

.my-n2 {
margin-top: -0.5rem !important;
margin-bottom: -0.5rem !important;
}

.my-n3 {
margin-top: -1rem !important;
margin-bottom: -1rem !important;
}

.my-n4 {
margin-top: -1.5rem !important;
margin-bottom: -1.5rem !important;
}

.my-n5 {
margin-top: -2.5rem !important;
margin-bottom: -2.5rem !important;
}

.my-n10 {
margin-top: -6rem !important;
margin-bottom: -6rem !important;
}

.my-n15 {
margin-top: -9rem !important;
margin-bottom: -9rem !important;
}

.mt-n1 {
margin-top: -0.25rem !important;
}

.mt-n2 {
margin-top: -0.5rem !important;
}

.mt-n3 {
margin-top: -1rem !important;
}

.mt-n4 {
margin-top: -1.5rem !important;
}

.mt-n5 {
margin-top: -2.5rem !important;
}

.mt-n10 {
margin-top: -6rem !important;
}

.mt-n15 {
margin-top: -9rem !important;
}

.me-n1 {
margin-right: -0.25rem !important;
}

.me-n2 {
margin-right: -0.5rem !important;
}

.me-n3 {
margin-right: -1rem !important;
}

.me-n4 {
margin-right: -1.5rem !important;
}

.me-n5 {
margin-right: -2.5rem !important;
}

.me-n10 {
margin-right: -6rem !important;
}

.me-n15 {
margin-right: -9rem !important;
}

.mb-n1 {
margin-bottom: -0.25rem !important;
}

.mb-n2 {
margin-bottom: -0.5rem !important;
}

.mb-n3 {
margin-bottom: -1rem !important;
}

.mb-n4 {
margin-bottom: -1.5rem !important;
}

.mb-n5 {
margin-bottom: -2.5rem !important;
}

.mb-n10 {
margin-bottom: -6rem !important;
}

.mb-n15 {
margin-bottom: -9rem !important;
}

.ms-n1 {
margin-left: -0.25rem !important;
}

.ms-n2 {
margin-left: -0.5rem !important;
}

.ms-n3 {
margin-left: -1rem !important;
}

.ms-n4 {
margin-left: -1.5rem !important;
}

.ms-n5 {
margin-left: -2.5rem !important;
}

.ms-n10 {
margin-left: -6rem !important;
}

.ms-n15 {
margin-left: -9rem !important;
}

.p-0 {
padding: 0 !important;
}

.p-1 {
padding: 0.25rem !important;
}

.p-2 {
padding: 0.5rem !important;
}

.p-3 {
padding: 1rem !important;
}

.p-4 {
padding: 1.5rem !important;
}

.p-5 {
padding: 2.5rem !important;
}

.p-10 {
padding: 6rem !important;
}

.p-15 {
padding: 9rem !important;
}

.px-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}

.px-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}

.px-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}

.px-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}

.px-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}

.px-5 {
padding-right: 2.5rem !important;
padding-left: 2.5rem !important;
}

.px-10 {
padding-right: 6rem !important;
padding-left: 6rem !important;
}

.px-15 {
padding-right: 9rem !important;
padding-left: 9rem !important;
}

.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}

.py-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}

.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}

.py-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}

.py-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}

.py-5 {
padding-top: 2.5rem !important;
padding-bottom: 2.5rem !important;
}

.py-10 {
padding-top: 6rem !important;
padding-bottom: 6rem !important;
}

.py-15 {
padding-top: 9rem !important;
padding-bottom: 9rem !important;
}

.pt-0 {
padding-top: 0 !important;
}

.pt-1 {
padding-top: 0.25rem !important;
}

.pt-2 {
padding-top: 0.5rem !important;
}

.pt-3 {
padding-top: 1rem !important;
}

.pt-4 {
padding-top: 1.5rem !important;
}

.pt-5 {
padding-top: 2.5rem !important;
}

.pt-10 {
padding-top: 6rem !important;
}

.pt-15 {
padding-top: 9rem !important;
}

.pe-0 {
padding-right: 0 !important;
}

.pe-1 {
padding-right: 0.25rem !important;
}

.pe-2 {
padding-right: 0.5rem !important;
}

.pe-3 {
padding-right: 1rem !important;
}

.pe-4 {
padding-right: 1.5rem !important;
}

.pe-5 {
padding-right: 2.5rem !important;
}

.pe-10 {
padding-right: 6rem !important;
}

.pe-15 {
padding-right: 9rem !important;
}

.pb-0 {
padding-bottom: 0 !important;
}

.pb-1 {
padding-bottom: 0.25rem !important;
}

.pb-2 {
padding-bottom: 0.5rem !important;
}

.pb-3 {
padding-bottom: 1rem !important;
}

.pb-4 {
padding-bottom: 1.5rem !important;
}

.pb-5 {
padding-bottom: 2.5rem !important;
}

.pb-10 {
padding-bottom: 6rem !important;
}

.pb-15 {
padding-bottom: 9rem !important;
}

.ps-0 {
padding-left: 0 !important;
}

.ps-1 {
padding-left: 0.25rem !important;
}

.ps-2 {
padding-left: 0.5rem !important;
}

.ps-3 {
padding-left: 1rem !important;
}

.ps-4 {
padding-left: 1.5rem !important;
}

.ps-5 {
padding-left: 2.5rem !important;
}

.ps-10 {
padding-left: 6rem !important;
}

.ps-15 {
padding-left: 9rem !important;
}

@media screen and (max-width: 1050px){
.container{
	grid-gap: 5rem;
}
}

@media screen and (max-width: 1000px){
form{
	width: 290px;
}

.login-content h2{
	font-size: 2.4rem;
	margin: 8px 0;
}

.img img{
	width: 400px;
}
}

@media screen and (max-width: 900px){
.container{
	grid-template-columns: 1fr;
}

.img{
	display: none;
}

.wave{
	display: none;
}

.login-content{
	justify-content: center;
}
}