.wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 750px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    padding-top:50px;
}
.container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    border-radius: 16px;
    color: #f4f6ff;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
    padding: 0px;
    width: 90%;
    height: auto;
}
.login-left {
    width: 50%;
    z-index: 1;
    position: relative;
    height: 625px;
}
.login-left h2 {
    font-weight: 700;
    font-size:34px;
}
.login-left h3 {
    font-size: 1.2em;
    margin: 1em 0;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}
.login-left p {
    font-size: 14px;
    margin: 1em 0;
    line-height: 28px;
    font-weight: 400;
}
.login-left a {
    text-decoration: none;
    padding-right: 5px;
}
.login-form {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
}
.form-title {
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 25px;
}
.form-subtitle {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: rgba(245, 247, 255, 0.7);
    margin-bottom: 20px;
}
.forgot-link {
    display: block;
    width: 100%;
    text-align: right;
    padding-top: 10px;
}
.login-form a {
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: #f5f7ff;
}
.form-group {
    width: 100%;
    display: block;
    margin-bottom: 12px;
}
.signup-note {
    text-align: center;
    width: 100%;
    margin-top: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 247, 255, 0.7);
}
.signup-note a {
    color: #00ffff;
    font-weight: 700;
}
.form-check {
    display: block;
    width:100%
}
.form-check label {
    width: auto;
    padding-left: 5px;
}

/* ---- INPUT GROUP GLASS & NO WHITE ON FOCUS ---- */
.input-group {
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    height: 42px;
    width: 100%;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

/* ---- GLOBAL INPUT/textarea: sirf text wale transparent ---- */
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
    background-color: transparent !important;
    border: none;
    outline: none;
    color: #f5f7ff;   /* <-- yahi add kiya: text white */
}

/* Chrome/Edge autofill ka white/yellow hataao */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 40px transparent inset !important;
    box-shadow: 0 0 0 40px transparent inset !important;
    -webkit-text-fill-color: #f5f7ff !important;
    transition: background-color 9999s ease-in-out 0s;
}

button, input {
    overflow: visible;
}
[type="button"], [type="reset"], [type="submit"], button {
    -webkit-appearance: button;
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}
.btn-block {
    display: block;
    width: 100%;
}
[type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
input[type="button"].btn-block, input[type="reset"].btn-block, input[type="submit"].btn-block {
    width: 100%;
}
[type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner, button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
.form-control {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 8px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #f5f7ff;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, color 0.3s ease;
    box-shadow: none;
    caret-color: #f5f7ff;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
    color:#ffffff !important;
 
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.64);
    opacity: 1;
}
label {
    display: inline-block;
    margin-bottom: .5rem;
    font-weight: 700;
    width: 100%;
}
input[type="email"] {
    font-size: 15px;
    color: #f5f7ff;
    text-align: left;
    letter-spacing: 1px;
    padding: 14px 10px;
    width: 93%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
}
input[type="Password"] {
    font-size: 15px;
    color: #f5f7ff;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 14px 10px;
    width: 93%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
}
.copyright {
    font-size: 15px;
    text-align: center;
    line-height: 24px;
    color: white;
}
.carousel {
    height: 100%;
}

/*-----Responsive------ */
@media (max-width: 1280px) {
    .login-form {
        padding-left: 50px;
        padding-right: 50px;
    }
    .login-left {
        height: 100%;
    }
    .container {
        width: 100%;
    }
}
@media (max-width: 992px) {
    .login-form {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
    .login-left {
        display: none;
    }
}
@media (max-width: 767px){
    .login-form {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .login-left {
        display: none;
    }
    #background {
        width: 0%;
    }
    .wrapper {
        padding:10px;
    }
    .copyright {
        padding-bottom: 30px;
    }
}
@media (max-width: 360px) {
    .login-form {
        padding-left: 20px;
        padding-right: 20px;
    }
}
