body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif !important;
    overflow-x: hidden;
}
.authentication-wrapper-sec{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #458A8A 0%, #004745 100%);
    z-index: 1;
    
}
.authentication-wrapper-sec::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-image: url(../img/bg-img/authentication-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 650px;
    z-index: -1;
}
.authentication-wrap-box{
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
}
.authentication-brand-logo img{
    max-width: 290px;
    width: 100%;
}
.authentication-text{
    font-size: 25px;
    font-weight: 600;
}
.authentication-form .form-control{
    background-color: #FAFAFA;
    padding: .6rem .75rem;
    border: 1px solid #E8E8E8
}
.authentication-form .form-control:focus{
    box-shadow: none;
    border: 1px solid #005E60;
}
.authentication-btn-wrp .authentication-btn{
    border: none;
    box-shadow: none;
    background-color: #005E60;
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: auto;
}
.copyright-text{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    padding: 8px 0;
}
.copyright-text a{
    text-decoration: none;
}
.copyright-text a img{
    width: 18px;
    filter: brightness(0) invert(0.5);
}
.copyright-text p{
    color: #1e1f1f;
    margin-bottom: 0;
}
.copyright-text p strong{
    font-weight: 600;
    color: #005E60;
}
.design-and-dev-text{
    float: right;
}
.toggle-password{
	top: 50%;
    position: absolute;
    right: 10px;
    transform: translateY(-50%) !important;
}
.toggle-password img{
	width: 25px;
}