/* Left Side Gradient */
.gradient-side {
    background-image: url('../img/right-bg.png'); 
    background-size: cover;
    position: relative;
    overflow: hidden;
}
    .gradient-side::after {
        background-image: url(../img/after-bg.png);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-size: contain;
        background-position: center;
        z-index: 1;
    }
.col-md-7.d-none.d-md-flex.align-items-center.justify-content-center.gradient-side .text-white.text-center.px-5 {
    position: relative;
    z-index: 2;
}
    /* Optional: shape decoration (can add images/svg later) */
    /* Title Text */
    .text-login-title {
        color: #7f53ac;
        letter-spacing: 1px;
    }

/* Input with icon */
.icon-input {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-100%);
    color: #0e0d0d;
    z-index: 1;
}

.custom-input {
    height: 45px;
    border-radius: 25px;
    background-color: #f3f5f9;
    border: none;
    font-size: 15px;
}

    .custom-input:focus {
        outline: none;
        box-shadow: none;
        border: 1px solid #bbb;
        background-color: #fff;
    }

/* Button Gradient */
.btn-login {
    background: linear-gradient(to right, #7f53ac, #ff6a00);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: linear-gradient(to right, #ff6a00, #7f53ac);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }


.text-gradient {
    background: linear-gradient(135deg, #7f53ac, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sign-in_btn {
    background: linear-gradient(to right, #7f53ac, #ff6a00);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
    padding: 10px;
}

    .sign-in_btn:hover {
        background: linear-gradient(to right, #ff6a00, #7f53ac);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.input-group-text {
    border-radius: 25px 0 0 25px;
    border: none;
    border: 1px solid #ced4da73 !important;
}

.form-control, .form-select {
    border-radius: 0 25px 25px 0;
    border: none;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da73 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .form-control:focus {
        box-shadow: none;
        border: 1px solid #ccc;
        background-color: #fff;
    }

select {
    border: 1px solid #ced4da73 !important;
}