*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.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;
    margin-left: -30px;
}

.img img{
    width: 700px;
}

form{
	width: 360px;
}

.login-content img{
    height: 100px;
}

.login-content h2{
	margin: 35px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 1.3rem;
}

.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: #38d39f;
	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: #38d39f;
}

.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.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}

.input-div.pass{
	margin-bottom: 4px;
}

a{
	display: block;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

a:hover{
	color: #38d39f;
}

.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 15px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #ffc42c, #ffcf53, #ffc42c);
	background-size: 200%;
	font-size: 1rem;
	color: #000;
	font-family: 'Poppins', sans-serif;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
    font-weight: 700
}
.btn:hover{
	background-position: right;
}


@media screen and (max-width: 1050px){
	.container{
		grid-gap: 5rem;
	}
}

@media screen and (max-width: 1200px){
	form{
		width: 290px;
	}

	.login-content h2{
        font-size: 1.4rem;
        margin: 35px 0;
	}

	.img img{
		width: 600px;
	}
    
.login-content{
    margin-left: -50px;
}
    
    
}

@media screen and (max-width: 900px){
	.container{
		grid-template-columns: 1fr;
	}

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
    
.login-content{
    margin-left: 0px;
}
    
}





.alert.alert-primary {
  background-color: #F64E60;
  border-color: #F64E60;
  color: #FFFFFF;
}
.alert.alert-primary .close i {
  opacity: 0.8;
  color: #FFFFFF;
}
.alert.alert-primary .close:focus i, .alert.alert-primary .close:hover i {
  opacity: 1;
  color: #FFFFFF;
}
.alert.alert-secondary {
  background-color: #E4E6EF;
  border-color: #E4E6EF;
  color: #3F4254;
}
.alert.alert-secondary .close i {
  opacity: 0.8;
  color: #3F4254;
}
.alert.alert-secondary .close:focus i, .alert.alert-secondary .close:hover i {
  opacity: 1;
  color: #3F4254;
}
.alert.alert-success {
  background-color: #1BC5BD;
  border-color: #1BC5BD;
  color: #ffffff;
}
.alert.alert-success .close i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-success .close:focus i, .alert.alert-success .close:hover i {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-info {
  background-color: #009ceb;
  border-color: #009ceb;
  color: #ffffff;
}
.alert.alert-info .close i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-info .close:focus i, .alert.alert-info .close:hover i {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-warning {
  background-color: #FFA800;
  border-color: #FFA800;
  color: #ffffff;
}
.alert.alert-warning .close i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-warning .close:focus i, .alert.alert-warning .close:hover i {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-danger {
  background-color: #F64E60;
  border-color: #F64E60;
  color: #ffffff;
}
.alert.alert-danger .close i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-danger .close:focus i, .alert.alert-danger .close:hover i {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-light {
  background-color: #f0f3f9;
  border-color: #f0f3f9;
  color: #7E8299;
}
.alert.alert-light .close i {
  opacity: 0.8;
  color: #7E8299;
}
.alert.alert-light .close:focus i, .alert.alert-light .close:hover i {
  opacity: 1;
  color: #7E8299;
}
.alert.alert-dark {
  background-color: #181C32;
  border-color: #181C32;
  color: #ffffff;
}
.alert.alert-dark .close i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-dark .close:focus i, .alert.alert-dark .close:hover i {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #3F4254;
}
.alert.alert-white .close i {
  opacity: 0.8;
  color: #3F4254;
}
.alert.alert-white .close:focus i, .alert.alert-white .close:hover i {
  opacity: 1;
  color: #3F4254;
}

.alert.alert-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 1.5rem 2rem;
}
.alert.alert-custom .alert-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.25rem 0 0;
}
.alert.alert-custom .alert-icon i {
  font-size: 2.4rem;
}
.alert.alert-custom .alert-icon.alert-icon-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.alert.alert-custom .alert-text {
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.alert.alert-custom .alert-close {
  padding: 0 0 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  line-height: 0;
}
.alert.alert-custom .alert-close .close {
  text-shadow: none;
  cursor: pointer;
  line-height: 0;
}
.alert.alert-custom .alert-close i {
  -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
  font-size: 1rem;
}
.alert.alert-custom .alert-close i.ki {
  font-size: 0.75rem;
}
.alert.alert-custom .alert-close:focus i, .alert.alert-custom .alert-close:hover i {
  -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.alert.alert-custom.alert-outline-2x {
  border-width: 2px;
}
.alert.alert-custom.alert-white {
  background-color: #ffffff;
  border-color: #ffffff;
}
.alert.alert-custom.alert-white .alert-icon i {
  color: #3F4254;
}
.alert.alert-custom.alert-white .alert-text {
  color: #3F4254;
}
.alert.alert-custom.alert-white .alert-close i {
  color: #3F4254;
}
.alert.alert-custom.alert-default {
  background-color: #f0f3f9;
  border-color: #f0f3f9;
}
.alert.alert-custom.alert-shadow {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
  box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
}
.alert.alert-custom.alert-primary {
  background-color: #F64E60;
  border-color: #F64E60;
}
.alert.alert-custom.alert-primary .alert-icon i {
  opacity: 0.8;
  color: #FFFFFF;
}
.alert.alert-custom.alert-primary .alert-text {
  color: #FFFFFF;
}
.alert.alert-custom.alert-primary .alert-close i {
  color: #FFFFFF;
}
.alert.alert-custom.alert-primary .alert-close:focus, .alert.alert-custom.alert-primary .alert-close:hover {
  opacity: 1;
  color: #FFFFFF;
}
.alert.alert-custom.alert-light-primary {
  background-color: #FFE2E5;
  border-color: transparent;
}
.alert.alert-custom.alert-light-primary .alert-icon i {
  color: #F64E60;
}
.alert.alert-custom.alert-light-primary .alert-text {
  color: #F64E60;
}
.alert.alert-custom.alert-light-primary .alert-close i {
  color: #F64E60;
}
.alert.alert-custom.alert-light-primary .alert-close:focus, .alert.alert-custom.alert-light-primary .alert-close:hover {
  color: #EE2D41;
}
.alert.alert-custom.alert-light-primary.alert-notice {
  border: 0;
  border-left: 4px solid #F64E60;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-primary {
  background-color: transparent;
  border-color: #F64E60;
}
.alert.alert-custom.alert-outline-primary .alert-icon i {
  color: #F64E60;
}
.alert.alert-custom.alert-outline-primary .alert-text {
  color: #F64E60;
}
.alert.alert-custom.alert-outline-primary .alert-close i {
  opacity: 0.8;
  color: #F64E60;
}
.alert.alert-custom.alert-outline-primary .alert-close:focus i, .alert.alert-custom.alert-outline-primary .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-secondary {
  background-color: #E4E6EF;
  border-color: #E4E6EF;
}
.alert.alert-custom.alert-secondary .alert-icon i {
  opacity: 0.8;
  color: #3F4254;
}
.alert.alert-custom.alert-secondary .alert-text {
  color: #3F4254;
}
.alert.alert-custom.alert-secondary .alert-close i {
  color: #3F4254;
}
.alert.alert-custom.alert-secondary .alert-close:focus, .alert.alert-custom.alert-secondary .alert-close:hover {
  opacity: 1;
  color: #3F4254;
}
.alert.alert-custom.alert-light-secondary {
  background-color: #EBEDF3;
  border-color: transparent;
}
.alert.alert-custom.alert-light-secondary .alert-icon i {
  color: #E4E6EF;
}
.alert.alert-custom.alert-light-secondary .alert-text {
  color: #E4E6EF;
}
.alert.alert-custom.alert-light-secondary .alert-close i {
  color: #E4E6EF;
}
.alert.alert-custom.alert-light-secondary .alert-close:focus, .alert.alert-custom.alert-light-secondary .alert-close:hover {
  color: #d7dae7;
}
.alert.alert-custom.alert-light-secondary.alert-notice {
  border: 0;
  border-left: 4px solid #E4E6EF;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-secondary {
  background-color: transparent;
  border-color: #E4E6EF;
}
.alert.alert-custom.alert-outline-secondary .alert-icon i {
  color: #3F4254;
}
.alert.alert-custom.alert-outline-secondary .alert-text {
  color: #3F4254;
}
.alert.alert-custom.alert-outline-secondary .alert-close i {
  opacity: 0.8;
  color: #3F4254;
}
.alert.alert-custom.alert-outline-secondary .alert-close:focus i, .alert.alert-custom.alert-outline-secondary .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-success {
  background-color: #1BC5BD;
  border-color: #1BC5BD;
}
.alert.alert-custom.alert-success .alert-icon i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-custom.alert-success .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-success .alert-close i {
  color: #ffffff;
}
.alert.alert-custom.alert-success .alert-close:focus, .alert.alert-custom.alert-success .alert-close:hover {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-custom.alert-light-success {
  background-color: #C9F7F5;
  border-color: transparent;
}
.alert.alert-custom.alert-light-success .alert-icon i {
  color: #1BC5BD;
}
.alert.alert-custom.alert-light-success .alert-text {
  color: #1BC5BD;
}
.alert.alert-custom.alert-light-success .alert-close i {
  color: #1BC5BD;
}
.alert.alert-custom.alert-light-success .alert-close:focus, .alert.alert-custom.alert-light-success .alert-close:hover {
  color: #0BB7AF;
}
.alert.alert-custom.alert-light-success.alert-notice {
  border: 0;
  border-left: 4px solid #1BC5BD;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-success {
  background-color: transparent;
  border-color: #1BC5BD;
}
.alert.alert-custom.alert-outline-success .alert-icon i {
  color: #1BC5BD;
}
.alert.alert-custom.alert-outline-success .alert-text {
  color: #1BC5BD;
}
.alert.alert-custom.alert-outline-success .alert-close i {
  opacity: 0.8;
  color: #1BC5BD;
}
.alert.alert-custom.alert-outline-success .alert-close:focus i, .alert.alert-custom.alert-outline-success .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-info {
  background-color: #009ceb;
  border-color: #009ceb;
}
.alert.alert-custom.alert-info .alert-icon i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-custom.alert-info .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-info .alert-close i {
  color: #ffffff;
}
.alert.alert-custom.alert-info .alert-close:focus, .alert.alert-custom.alert-info .alert-close:hover {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-custom.alert-light-info {
  background-color: #EEE5FF;
  border-color: transparent;
}
.alert.alert-custom.alert-light-info .alert-icon i {
  color: #009ceb;
}
.alert.alert-custom.alert-light-info .alert-text {
  color: #009ceb;
}
.alert.alert-custom.alert-light-info .alert-close i {
  color: #009ceb;
}
.alert.alert-custom.alert-light-info .alert-close:focus, .alert.alert-custom.alert-light-info .alert-close:hover {
  color: #7337EE;
}
.alert.alert-custom.alert-light-info.alert-notice {
  border: 0;
  border-left: 4px solid #009ceb;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-info {
  background-color: transparent;
  border-color: #009ceb;
}
.alert.alert-custom.alert-outline-info .alert-icon i {
  color: #009ceb;
}
.alert.alert-custom.alert-outline-info .alert-text {
  color: #009ceb;
}
.alert.alert-custom.alert-outline-info .alert-close i {
  opacity: 0.8;
  color: #009ceb;
}
.alert.alert-custom.alert-outline-info .alert-close:focus i, .alert.alert-custom.alert-outline-info .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-warning {
  background-color: #FFA800;
  border-color: #FFA800;
}
.alert.alert-custom.alert-warning .alert-icon i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-custom.alert-warning .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-warning .alert-close i {
  color: #ffffff;
}
.alert.alert-custom.alert-warning .alert-close:focus, .alert.alert-custom.alert-warning .alert-close:hover {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-custom.alert-light-warning {
  background-color: #FFF4DE;
  border-color: transparent;
}
.alert.alert-custom.alert-light-warning .alert-icon i {
  color: #FFA800;
}
.alert.alert-custom.alert-light-warning .alert-text {
  color: #FFA800;
}
.alert.alert-custom.alert-light-warning .alert-close i {
  color: #FFA800;
}
.alert.alert-custom.alert-light-warning .alert-close:focus, .alert.alert-custom.alert-light-warning .alert-close:hover {
  color: #EE9D01;
}
.alert.alert-custom.alert-light-warning.alert-notice {
  border: 0;
  border-left: 4px solid #FFA800;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-warning {
  background-color: transparent;
  border-color: #FFA800;
}
.alert.alert-custom.alert-outline-warning .alert-icon i {
  color: #FFA800;
}
.alert.alert-custom.alert-outline-warning .alert-text {
  color: #FFA800;
}
.alert.alert-custom.alert-outline-warning .alert-close i {
  opacity: 0.8;
  color: #FFA800;
}
.alert.alert-custom.alert-outline-warning .alert-close:focus i, .alert.alert-custom.alert-outline-warning .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-danger {
  background-color: #F64E60;
  border-color: #F64E60;
}
.alert.alert-custom.alert-danger .alert-icon i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-custom.alert-danger .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-danger .alert-close i {
  color: #ffffff;
}
.alert.alert-custom.alert-danger .alert-close:focus, .alert.alert-custom.alert-danger .alert-close:hover {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-custom.alert-light-danger {
  background-color: #FFE2E5;
  border-color: transparent;
}
.alert.alert-custom.alert-light-danger .alert-icon i {
  color: #F64E60;
}
.alert.alert-custom.alert-light-danger .alert-text {
  color: #F64E60;
}
.alert.alert-custom.alert-light-danger .alert-close i {
  color: #F64E60;
}
.alert.alert-custom.alert-light-danger .alert-close:focus, .alert.alert-custom.alert-light-danger .alert-close:hover {
  color: #EE2D41;
}
.alert.alert-custom.alert-light-danger.alert-notice {
  border: 0;
  border-left: 4px solid #F64E60;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-danger {
  background-color: transparent;
  border-color: #F64E60;
}
.alert.alert-custom.alert-outline-danger .alert-icon i {
  color: #F64E60;
}
.alert.alert-custom.alert-outline-danger .alert-text {
  color: #F64E60;
}
.alert.alert-custom.alert-outline-danger .alert-close i {
  opacity: 0.8;
  color: #F64E60;
}
.alert.alert-custom.alert-outline-danger .alert-close:focus i, .alert.alert-custom.alert-outline-danger .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-light {
  background-color: #f0f3f9;
  border-color: #f0f3f9;
}
.alert.alert-custom.alert-light .alert-icon i {
  opacity: 0.8;
  color: #7E8299;
}
.alert.alert-custom.alert-light .alert-text {
  color: #7E8299;
}
.alert.alert-custom.alert-light .alert-close i {
  color: #7E8299;
}
.alert.alert-custom.alert-light .alert-close:focus, .alert.alert-custom.alert-light .alert-close:hover {
  opacity: 1;
  color: #7E8299;
}
.alert.alert-custom.alert-light-light {
  background-color: #f0f3f9;
  border-color: transparent;
}
.alert.alert-custom.alert-light-light .alert-icon i {
  color: #f0f3f9;
}
.alert.alert-custom.alert-light-light .alert-text {
  color: #f0f3f9;
}
.alert.alert-custom.alert-light-light .alert-close i {
  color: #f0f3f9;
}
.alert.alert-custom.alert-light-light .alert-close:focus, .alert.alert-custom.alert-light-light .alert-close:hover {
  color: #E4E6EF;
}
.alert.alert-custom.alert-light-light.alert-notice {
  border: 0;
  border-left: 4px solid #f0f3f9;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-light {
  background-color: transparent;
  border-color: #f0f3f9;
}
.alert.alert-custom.alert-outline-light .alert-icon i {
  color: #3F4254;
}
.alert.alert-custom.alert-outline-light .alert-text {
  color: #3F4254;
}
.alert.alert-custom.alert-outline-light .alert-close i {
  opacity: 0.8;
  color: #3F4254;
}
.alert.alert-custom.alert-outline-light .alert-close:focus i, .alert.alert-custom.alert-outline-light .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-dark {
  background-color: #181C32;
  border-color: #181C32;
}
.alert.alert-custom.alert-dark .alert-icon i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-custom.alert-dark .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-dark .alert-close i {
  color: #ffffff;
}
.alert.alert-custom.alert-dark .alert-close:focus, .alert.alert-custom.alert-dark .alert-close:hover {
  opacity: 1;
  color: #ffffff;
}
.alert.alert-custom.alert-light-dark {
  background-color: #D1D3E0;
  border-color: transparent;
}
.alert.alert-custom.alert-light-dark .alert-icon i {
  color: #181C32;
}
.alert.alert-custom.alert-light-dark .alert-text {
  color: #181C32;
}
.alert.alert-custom.alert-light-dark .alert-close i {
  color: #181C32;
}
.alert.alert-custom.alert-light-dark .alert-close:focus, .alert.alert-custom.alert-light-dark .alert-close:hover {
  color: #131628;
}
.alert.alert-custom.alert-light-dark.alert-notice {
  border: 0;
  border-left: 4px solid #181C32;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-dark {
  background-color: transparent;
  border-color: #181C32;
}
.alert.alert-custom.alert-outline-dark .alert-icon i {
  color: #181C32;
}
.alert.alert-custom.alert-outline-dark .alert-text {
  color: #181C32;
}
.alert.alert-custom.alert-outline-dark .alert-close i {
  opacity: 0.8;
  color: #181C32;
}
.alert.alert-custom.alert-outline-dark .alert-close:focus i, .alert.alert-custom.alert-outline-dark .alert-close:hover i {
  opacity: 1;
}
.alert.alert-custom.alert-white {
  background-color: #ffffff;
  border-color: #ffffff;
}
.alert.alert-custom.alert-white .alert-icon i {
  opacity: 0.8;
  color: #3F4254;
}
.alert.alert-custom.alert-white .alert-text {
  color: #3F4254;
}
.alert.alert-custom.alert-white .alert-close i {
  color: #3F4254;
}
.alert.alert-custom.alert-white .alert-close:focus, .alert.alert-custom.alert-white .alert-close:hover {
  opacity: 1;
  color: #3F4254;
}
.alert.alert-custom.alert-light-white {
  background-color: #ffffff;
  border-color: transparent;
}
.alert.alert-custom.alert-light-white .alert-icon i {
  color: #ffffff;
}
.alert.alert-custom.alert-light-white .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-light-white .alert-close i {
  color: #ffffff;
}
.alert.alert-custom.alert-light-white .alert-close:focus, .alert.alert-custom.alert-light-white .alert-close:hover {
  color: #f0f3f9;
}
.alert.alert-custom.alert-light-white.alert-notice {
  border: 0;
  border-left: 4px solid #ffffff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.alert.alert-custom.alert-outline-white {
  background-color: transparent;
  border-color: #ffffff;
}
.alert.alert-custom.alert-outline-white .alert-icon i {
  color: #ffffff;
}
.alert.alert-custom.alert-outline-white .alert-text {
  color: #ffffff;
}
.alert.alert-custom.alert-outline-white .alert-close i {
  opacity: 0.8;
  color: #ffffff;
}
.alert.alert-custom.alert-outline-white .alert-close:focus i, .alert.alert-custom.alert-outline-white .alert-close:hover i {
  opacity: 1;
}





.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 500;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #802932;
  background-color: #fddcdf;
  border-color: #fccdd2;
}
.alert-primary hr {
  border-top-color: #fbb5bc;
}
.alert-primary .alert-link {
  color: #591d23;
}

.alert-secondary {
  color: #77787c;
  background-color: #fafafc;
  border-color: #f7f8fb;
}
.alert-secondary hr {
  border-top-color: #e6e9f3;
}
.alert-secondary .alert-link {
  color: #5e5f62;
}

.alert-success {
  color: #0e6662;
  background-color: #d1f3f2;
  border-color: #bfefed;
}
.alert-success hr {
  border-top-color: #abeae7;
}
.alert-success .alert-link {
  color: #083937;
}

.alert-info {
  color: #472a83;
  background-color: #e7dcfe;
  border-color: #decefe;
}
.alert-info hr {
  border-top-color: #cdb5fd;
}
.alert-info .alert-link {
  color: #321e5c;
}

.alert-warning {
  color: #855700;
  background-color: #ffeecc;
  border-color: #ffe7b8;
}
.alert-warning hr {
  border-top-color: #ffde9f;
}
.alert-warning .alert-link {
  color: #523600;
}

.alert-danger {
  color: #802932;
  background-color: #fddcdf;
  border-color: #fccdd2;
}
.alert-danger hr {
  border-top-color: #fbb5bc;
}
.alert-danger .alert-link {
  color: #591d23;
}

.alert-light {
  color: #7e8081;
  background-color: #fdfdfe;
  border-color: #fcfcfd;
}
.alert-light hr {
  border-top-color: #ededf3;
}
.alert-light .alert-link {
  color: #656667;
}

.alert-dark {
  color: #0c0f1a;
  background-color: #d1d2d6;
  border-color: #bebfc6;
}
.alert-dark hr {
  border-top-color: #b0b2ba;
}
.alert-dark .alert-link {
  color: black;
}

.alert-white {
  color: #858585;
  background-color: white;
  border-color: white;
}
.alert-white hr {
  border-top-color: #f2f2f2;
}
.alert-white .alert-link {
  color: #6c6c6c;
}




.shadow-sm {
  -webkit-box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1);
}

.shadow-none {
  -webkit-box-shadow: none;
  box-shadow: none;
}
