body {
    font-family: "Segoe UI", Arial;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-container {
    background: white;
    padding: 40px;
    width: 360px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #1e3a8a;
}

.auth-container h2 {
    color: #1e3a8a;
}

.auth-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #eef6ff;
    border: 1px solid #cbd5e1;
}

.auth-container button {
    width: 100%;
    padding: 10px;
    background: #1e3a8a;
    color: white;
    border: none;
    cursor: pointer;
}

.submit-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.submit-btn:hover {
    background: #16307a;
}
.top-logo {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1000;
}

.top-logo img {
    height: 50px;
    width: auto;
}
/* ---------- RECOMMENDATIONS ---------- */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    padding: 20px;
    border-radius: 6px;
}

.service-card h3 {
    margin-top: 0;
    color: #1e3a8a;
}

.service-card p {
    font-size: 14px;
    color: #374151;
}

.service-card .tag {
    color: #2563eb;
    font-weight: 600;
}

.service-card button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

.service-card button:hover {
    background: #16307a;
}

.service-card a {
    display: block;
    margin-top: 8px;
    text-align: center;
    color: #2563eb;
    text-decoration: none;
}

/* ---------- IT HEALTH ---------- */
.health-box {
    background: #eef6ff;
    padding: 20px;
    border-left: 5px solid #1e3a8a;
    margin-top: 20px;
}

.health-box h3 {
    margin-top: 0;
}

.health-box ul {
    padding-left: 20px;
}

.health-box button {
    margin-top: 10px;
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
}
