﻿body {
    margin: 0;
    background-image: url('../images/bg-registration.jpg');
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}


.side-img {
    background: url('../images/login-bg.svg')center  ;
    background-size: cover;
    background-repeat:no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glass-morphism {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(6.800000190734863px);
    padding: 20px;
    min-width: 310px;
    min-height: 352px;
}
.login-kyc3D {
    max-width: 305px;
    position: absolute;
    /* right: -101px; */
    top: 27px;
    right: -129px;
    bottom: 0;
}
.welcome-text {
    color: #FFF;
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    /* line-height: 46px; */
    max-width: 139px;
}

.form-container {
    max-width: 400px;
    min-width: 391px;
    background-image: url(../images/registration.jpg);
    padding: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 36px;
    min-height: 404px;
    background: #FFF;
}
    .form-container h2 {
        color: #000;
        font-family: Poppins;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }
.form-control {
    border-radius: 16px;
    background: rgba(240, 237, 255, 0.80);
}
.floating-label {
    position:relative;
}
    .floating-label input {
        width: 100%;
        /* padding: 1rem; */
        font-size: 16px;
        border: none;
        border-radius: 16px;
        background: rgba(240, 237, 255, 0.80);
        /* border-bottom: 1px solid #ced4da; */
        outline: none;
        padding: 10px 36px;
    }

    .floating-label label {
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        padding: 8px 28px;
        font-size: 16px;
        transition: transform 0.2s ease-out, font-size 0.2s ease-out;
    }

    .floating-label input:focus + label,
    .floating-label input:not(:placeholder-shown) + label {
        transform: translateY(-20px) scale(0.8);
        font-size: 16px;
    }
.btn-sumbit {
    margin-top: 24px;
    border-radius: 16px;
    background: linear-gradient(100deg, #9181F4 -5.85%, #5038ED 109.55%);
    box-shadow: 0px 8px 21px 0px rgba(0, 0, 0, 0.16);
    padding: 9px 22px;
    color: #FFF;
    border: none;
}
/*input.username {
    border-color: #28a745;
    padding-right: 30px;
    background-image: url('../images/username.svg');
    background-repeat: no-repeat;
    background-size: 28px 20px;
    background-position: left center;
}
input.password {
    border-color: #28a745;
    background-image: url('../images/password.png');
    background-repeat: no-repeat;
    background-size: 22px 20px;
    background-position: left center;
}*/
/*--------------------------------------------------------------
  # Sweet Alert
  --------------------------------------------------------------*/
.sweet-overlay {
    background-image: url('../Images/backbg.png');
}

.sweet-alert {
    /* width: auto !important; */
    border-radius: 4px !important;
    /*background: #FDFCEC;*/
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    /*background: rgb(249 249 249);*/
    border: 4px solid hsl(245.45deg 100% 62.36% / 13%);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.floating-label::after {
    content: "\f0e0"; /* Unicode for envelope icon */
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #ccc;
}

.floating-label.password::after {
    content: "\f023"; /* Unicode for lock icon */
    font-family: 'Font Awesome 5 Free';
}