
.auth-box {
    background-color: transparent;
}

div.input-group {
    border-left: 2px solid #33b5e5 !important;
    box-shadow: 0 3px 10px #212529 !important;
}

div.input-group-append>button {
    height: 40px;
    background-color: rgba(28, 42, 72, 1);
    color: #929fba;
}

div.input-group-append>button>i {
    vertical-align: middle;
    color: #b1bace;
}

div.input-group-append>button:hover>i {
    color: #33b5e5;
    text-shadow: 0px 3px 20px #0099CC, 0px -3px 20px #0099CC, 3px 0px 20px #0099CC, -3px 0px 20px #0099CC;
}

/* User Input Fields Styling */
.user_input_field {
    height: 40px;
    border: none !important;
    color: #fff !important;
    caret-color: #ff4081 !important;
    background-color: rgba(69, 82, 110, 1) !important;
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 20px;
    box-shadow: none !important;
}

.user_input_field::placeholder {
    color: #b1bace;
    font-weight: 600;
    opacity: 1;
    transition: 0.2s;
}

.user_input_field#user_name {
    /* background-image: url('../images/login_user.svg'); */
    padding-right: 60px;
    letter-spacing: 0.6px;
}

.user_input_field#user_pass {
    /* background-image: url('../images/login_key.svg'); */
    padding-right: 60px;
    letter-spacing: 0.6px;
}

/* Show Password Button */
#show_pass {
    position: absolute;
    float: right;
    right: 75px;
    margin-top: 10px;
    cursor: pointer;
    z-index: 99 !important;
    display: none;
    width: fit-content;
}

#remember_me~span,
#remember_and_auto_login~span {
    position: relative;
    top: 4px;
    font-size: 14px;
}

button:focus {
    box-shadow: none !important;
}

/* Body Styling */
body {

    padding: 0 !important;
    overflow: hidden;
    background-image: url('../images/world_map_dark_enhance.jpg') !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Container Styling */
.container-custom {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    box-sizing: border-box;
}

/* Header Styling */
.header {
    text-align: center;
    padding: 20px;
    /*background-color: #d0e8f2;
    border-radius: 8px;*/
    margin-bottom: 20px;
    box-sizing: border-box;
    margin-top: 20px;
    height: fit-content;

    background: radial-gradient(circle, rgb(107 155 181 / 50%), transparent);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(107, 155, 181, 0.5);    
}

.welcome_text
{
    color: #fff;
    position: relative;
    left: 58px;
    bottom: 8px;
    border-bottom: 5px solid #dfc66e;
    margin-right: 25%;
    text-align: end;
}

.image_logo
{
    font-family: impact; 
    word-spacing: 5px; 
    letter-spacing: 1px; 
    color: #425ff4; 
    position: relative; 
    right: 30px; 
    bottom: 25px;
}

.auth-box {
    background: none;
    box-shadow: none;
    margin: 0 !important;
}

.text-center img {
    width: 100px;
    margin-bottom: 20px;
}

/* Button Styling */
.btn {
    background-color: #2290ff;
    color: #fff;
}

/* Form Container */
.form-container {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}

/* Login Block Styling */
.login-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styling */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    .container-custom {
        flex-direction: column;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 15px;
    }

    .header,
    .login-block {
        flex: 1 1 auto;
        margin-bottom: 0px;
        padding: 0px 10px 10px 10px;
    }

    .header {
        padding: 10px;
    }

    .login-block {
        padding: 0px 10px 10px 10px;
        display: contents;
    }

    .basundhara_logo {
        width: 23% !important;
    }

    .welcome_text
    {
        border-bottom: 5px solid #dfc66e;
        left: 45px;
        bottom: 9px;        
        margin-right: 25%;        
    }

    h1 span .basundhara-title {
        font-family: Impact, sans-serif !important;
        word-spacing: 5px !important;
        letter-spacing: 1px !important;
        color: #425ff4 !important;
    }

    p .description {
        text-align: justify !important;
    }

}