@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body.login-page {
    background: var(--bg-image) no-repeat center center fixed !important;
    background-size: cover !important;
    font-family: 'Poppins', sans-serif !important;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.login-box {
    margin: 0 !important;
    width: 400px !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

.login-logo img {
    max-width: 200px;
    height: auto !important;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    margin-bottom: 20px;
}

.login-box-body {
    background: transparent !important;
    color: #fff !important;
    padding: 0 !important;
}

.login-box-msg {
    font-weight: 300;
    font-size: 1.1em;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px !important;
}

.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    color: #fff !important;
    height: 45px !important;
    padding-left: 15px !important;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #3c8dbc !important;
    box-shadow: 0 0 10px rgba(60, 141, 188, 0.5) !important;
}

.has-feedback .form-control-feedback {
    color: rgba(255,255,255,0.7) !important;
    line-height: 45px !important;
}

.btn-primary.btn-block {
    background: linear-gradient(135deg, #3c8dbc, #00c0ef) !important;
    border: none !important;
    border-radius: 10px !important;
    height: 45px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 192, 239, 0.4);
}

.login-box a {
    color: rgba(255,255,255,0.7) !important;
    transition: all 0.3s ease;
}

.login-box a:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.icheck > label {
    padding-left: 0 !important;
    color: rgba(255,255,255,0.8);
}

/* For errors */
.text-danger, .text-success {
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 15px;
}
