.login_body {
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;

    background: 
        linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
        url('../img/login.jpeg'); /* your collage */
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glass card */
.login-card {
    width: 100%;
    max-width: 380px;
    padding: 30px 25px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);

    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #fff;

    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Floating labels */
.form-floating > .log_label {
    color: #ddd;
}

/* Input style */
#password{
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
}

#password:focus {
    background: rgba(255,255,255,0.3);
    color: #fff;
    box-shadow: none;
}

/* Password icon */
.password-wrapper {
    position: relative;
}

.password-wrapper .bi {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
}
#user{
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
}

#user:focus {
    background: rgba(255,255,255,0.3);
    color: #fff;
    box-shadow: none;
}


.btn-login {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
}

/* Hover effect */
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 249, 215, 0.4);
    color: #000;
}

/* Click effect */
.btn-login:active {
    transform: scale(0.97);
}

/* Extra links */
.extra-links {
    font-size: 14px;
}

.extra-links .extra_link {
    color: #ddd;
    text-decoration: none;
}

.extra-links .extra_link:hover {
    text-decoration: underline;
}
.brand-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;

   background: linear-gradient(45deg, #43e97b, #38f9d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 5px;
}
.brand-title {
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.6);
}
/* Mobile tweaks */
@media (max-width: 576px) {
    .login-card {
        margin: 15px;
        padding: 25px 20px;
    }
}