.gird-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 912px;
    margin: auto;
}

.gird-two-column .login-right-column {
    box-shadow: 0 0 10px #00000029;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-register-wrapper h5 {
    font-weight: 300;
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 16px;
}

.login-register-wrapper h5 span {
    font-weight: 800;
    display: block;
    text-transform: uppercase;
}

.login-register-wrapper .single-input {
	margin-bottom: 16px;
	position: relative;
}
.toggle-password{
	position: absolute;
	top: 20px;
	right: 10px;
}
.login-register-wrapper .single-input input {
    height: 60px;
    background-color: white;
    box-shadow: 0 0 20px #0000001a;
    border-radius: 10px;
    border: none;
    width: 100%;
    padding: 16px;
}
.login-register-wrapper .single-input input:focus{
	height: 60px;
	background-color: white !important;
	box-shadow: 0 0 20px #0000001a;
	border-radius: 10px;
	border: none;
	width: 100%;
	padding: 16px;
}
.login-register-wrapper .btn-sqr {
    display: block;
    width: 100%;
    box-shadow: 0 7px 11px #5315cf38;
}

.login-register-wrapper .custom-checkbox.custom-control,
.login-register-wrapper .custom-radio.custom-control {
    text-align: left;
}

.login-register-wrapper .text-danger {
    text-align: left;
    margin-top: 5px;
}

/* contact page */
.contact-message {
	margin: 30px 0;
	border-radius: 5px;
	-webkit-filter: drop-shadow(0 3px 10px rgba(0, 22, 50, .06));
	filter: drop-shadow(0 3px 10px rgba(0, 22, 50, .06));
	background-color: #fff;
	padding: 25px 40px;
	position: sticky;
	top:50px;
}

#contact-form {margin-top: 30px;}

.contact-message h4 {
    font-size: 31px;
}

.contect-info-left h5 {
    font-size: 20px;
    font-weight: 300;
    color: #f06306;
    margin-bottom: 0;
}

.contect-info-left h3 {
    font-weight: 600;
}

.address-detail {
    margin: 2rem 0;
}

.address-detail h5 {
    font-weight: 600;
    color: #000;
}

.address-detail .btn-success {
    color: white;
    margin: 1rem 0;
}

ul.contact-list {
    padding-left: 0;
}

ul.contact-list li {
    align-items: flex-start;
    padding: 0;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.9rem;
}

ul.contact-list li span {
    vertical-align: text-bottom;
    -webkit-filter: drop-shadow(0 3px 10px rgba(0, 22, 50, .06));
    filter: drop-shadow(0 3px 10px rgba(0, 22, 50, .06));
    background-color: #fff;
    margin-right: 25px;
    min-width: 70px;
    text-align: center;
    padding: 13px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

ul.contact-list li span div.icon {
    display: none;
}

ul.contact-list li span i {
    color: #f06306;
    font-size: 2rem;
    padding-right: 0;
    text-align: center;
}

@media(max-width:767px) {
    .login-left-slider{
        display: none;
    }
    .gird-two-column {
        display: grid;
        grid-template-columns: 1fr;
        max-width:100%;
        margin: auto;
    }

}

@media(max-width:767px) {
    .gird-two-column .login-right-column {
        padding: 2rem 1rem;
    }
}

@media(max-width:555px) {
    ul.contact-list li span {
        margin-right: 10px;
        min-width: 60px;
        height: 60px;
      }
      ul.contact-list li span i {
        font-size: 1.8rem;
      }
      .contact-message {
        margin: 20px 0 0;
        border-radius: 5px;
        padding: 25px 20px;
      }
}
@media(max-width:420px) {
    .contact-message h4 {
        font-size: 25px;
    }
}