/* Admin login page - centered glass card layout */
html, body.admin-login-body {
    height: 100%;
}

.admin-login-screen {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.admin-login-screen:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(20, 24, 33, 0.55) 0%, rgba(20, 24, 33, 0.72) 100%);
    z-index: 0;
}

.admin-login-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    max-width: 920px;
    width: 100%;
}

.admin-login-card {
    flex: 0 1 380px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    padding: 36px 32px 30px;
    text-align: left;
}

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

.admin-login-logo img {
    max-height: 56px;
    width: auto;
}

.admin-login-card h3.admin-login-title {
    text-align: center;
    color: #2b2b2b;
    font-weight: 500;
    margin: 0 0 22px;
}

.admin-login-card .form-group {
    margin-bottom: 18px;
}

.admin-login-card button.btn {
    background: #35aa47;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.admin-login-card button.btn:hover {
    background: #2c8d3b !important;
    opacity: 1 !important;
}

.admin-login-card a.forgot {
    display: block;
    text-align: center;
    margin-top: 14px;
}

.admin-notice-card {
    flex: 0 1 320px;
    max-width: 320px;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    padding: 26px 24px;
    color: #fff;
    text-align: left;
    max-height: 430px;
    overflow-y: auto;
}

.admin-notice-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 14px;
}

.admin-notice-card h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.admin-notice-card p {
    font-size: 13px;
    line-height: 18px;
    word-break: break-word;
}

.admin-notice-divider {
    background: rgba(255, 255, 255, 0.25);
    width: 100%;
    height: 1px;
    margin: 14px 0;
}

@media (max-width: 767px) {
    .admin-login-content {
        flex-direction: column;
        align-items: center;
    }
    .admin-login-card,
    .admin-notice-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 400px;
    }
    .admin-notice-card {
        max-height: 220px;
    }
}
