/* ------------------------------
   General login card styling
--------------------------------*/

.nlm-login-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.nlm-login-card h2 {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--nhc-dark-blue);
    margin-bottom: 1.5rem;
}

.nlm-login-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* ------------------------------
   Auth Buttons (Google / Microsoft)
--------------------------------*/

.nlm-auth-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

/* Google Button */
.nlm-auth-btn.google {
    background-color: #ffffff;
    color: #444;
    border: 1px solid #ddd;
}

.nlm-auth-btn.google:hover {
    background-color: #f7f7f7;
}

/* Microsoft Button */
.nlm-auth-btn.microsoft {
    background-color: var(--nhc-dark-blue);
    color: #ffffff;
}

.nlm-auth-btn.microsoft:hover {
    background-color: #00274d; /* darker blue */
}

/* ------------------------------
   Logos next to text (Google / Microsoft)
--------------------------------*/

.auth-logo {
    height: 24px;
    width: auto;
    margin-right: 8px;
}

/* ------------------------------
   Optional: Cancel link
--------------------------------*/

.nlm-login-card a.cancel-link {
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
}

.nlm-login-card a.cancel-link:hover {
    color: var(--nhc-red);
}

/* ------------------------------
   Responsive tweaks
--------------------------------*/

@media (max-width: 576px) {
    .nlm-login-card {
        padding: 2rem 1.5rem;
    }

    .nlm-login-card h2 {
        font-size: 1.5rem;
    }

    .nlm-auth-btn {
        font-size: 0.95rem;
    }
}
