.bimg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 48px 56px;
    backdrop-filter: blur(10px);
}

.login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.login-logo .logo-img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.login-logo .logo-img:hover {
    transform: scale(1.05);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.login-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.login-form-body {
    margin-bottom: 20px;
}

.button-primary {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: auto;
    line-height: 20px;
    padding: 14px;
    text-shadow: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.login-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.login-link {
    text-align: center;
    margin: 12px 0;
    font-size: 14px;
}

.login-link a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #2980b9;
    text-decoration: underline;
}

#LoginForm {
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#LoginForm .form-group {
    margin-bottom: 20px;
}

#LoginForm .form-control {
    height: 46px;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#LoginForm .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

#LoginForm label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

#LoginForm .checkbox {
    margin-top: 8px;
    margin-bottom: 16px;
}

#LoginForm .checkbox label {
    font-weight: 400;
    color: #636e72;
}

.btn-default {
    height: auto;
    line-height: 20px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .login-container {
        padding: 10px;
    }

    .login-card {
        padding: 32px 24px;
    }
}