/* ============================================
   VARIABLES
   ============================================ */
:root {
    --maple-primary: #4DA3FF; /* lighter primary blue */
    --maple-accent: #90C2FF;  /* pale blue accent */
    --maple-bg: #F7FBFF;      /* very light blue-tinted background */
}

/* ============================================
   BODY STYLES
   ============================================ */
body {
    background: var(--maple-bg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.app-card {
    max-width: 420px;
    width: 100%;
    max-height: 100vh;
    border: 1px solid rgba(77,163,255,0.18);
    box-shadow: 0 10px 30px rgba(77,163,255,0.18);
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============================================
   HEADER SECTION
   ============================================ */
.login-header {
    background: linear-gradient(135deg, var(--maple-primary), var(--maple-accent));
    color: #0B2E4E;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom: 3px solid var(--maple-primary);
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-header img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.login-content {
    padding: 2rem 1.5rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .login-content {
        padding: 3rem 2.5rem;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.login-footer {
    background: linear-gradient(135deg, var(--maple-primary), var(--maple-accent));
    color: #05325f;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.login-footer p {
    margin: 0;
    color: #05325f;
    font-size: 0.875rem;
}

/* ============================================
   BUTTONS & FORM ELEMENTS
   ============================================ */
.btn-maple {
    background: var(--maple-primary);
    border-color: var(--maple-primary);
    color: #fff;
}

.btn-maple:hover {
    background: #368FFF;
    border-color: #368FFF;
}