/* KemiSclicks Portal — Keith's Closet inspired layout */

.portal-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #1a0f2e 0%, #3d1f5c 45%, #7b3f8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.portal-container {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portal-top {
    display: flex;
    justify-content: center;
}

.portal-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 2.5rem 2.75rem;
}

.portal-welcome {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.portal-signup {
    text-align: center;
    padding: 2.75rem 3rem;
}

.portal-card h2 {
    color: #1e2a4a;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.portal-signup h3 {
    color: #1e2a4a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portal-signup > p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.portal-signup-list {
    text-align: left;
    max-width: 420px;
    margin: 1rem auto 1.5rem;
    padding-left: 1.25rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.8;
}

.portal-signup-list li {
    margin-bottom: 0.25rem;
}

.portal-cta-text {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 1.25rem 0 1rem;
}

.portal-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.portal-btn:last-child {
    margin-bottom: 0;
}

.portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05);
    color: inherit;
}

.portal-btn-coral {
    background: #ff7066;
    color: #fff;
}

.portal-btn-coral:hover {
    color: #fff;
}

.portal-btn-blue {
    background: #2563eb;
    color: #fff;
}

.portal-btn-blue:hover {
    color: #fff;
}

.portal-btn-large {
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.portal-admin-link {
    margin-top: 1.25rem;
    font-size: 0.85rem;
}

.portal-admin-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.portal-admin-link a:hover {
    text-decoration: underline;
}

.portal-request {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e9ecef;
}

.portal-request-btn {
    background: #fff;
    color: #ff7066;
    border: 2px solid #ffd0d0;
}

.portal-request-btn:hover {
    background: #fff5f5;
    color: #ff7066;
}

.portal-request-msg {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
}

@media (max-width: 600px) {
    .portal-page {
        padding: 1.5rem 1rem;
    }

    .portal-card {
        padding: 2rem 1.5rem;
    }

    .portal-card h2 {
        font-size: 1.4rem;
    }
}
