

/* styles.css */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    color: #222;
}

.stpp-portal-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
}

.stpp-logo img {
    max-width: 200px;
    margin-bottom: 24px;
}

.stpp-welcome-message {
    text-align: center;
    margin-bottom: 32px;
}

.stpp-welcome-message h1 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 700;
}

.stpp-welcome-message p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
}

.stpp-access-btn {
    margin-bottom: 36px;
}

.btn-platform {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 18px 44px;
    border-radius: 32px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(26,35,126,0.08);
    transition: background 0.2s, transform 0.2s;
    border: none;
    outline: none;
}

.btn-platform:hover {
    background: #2c3e50;
    transform: translateY(-2px) scale(1.04);
}

.stpp-contact-form-container {
    background: var(--surface);
    padding: 28px 24px 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 400px;
    width: 100%;
    margin-top: 10px;
}

.stpp-contact-form-container h2 {
    color: var(--primary-light);
    margin-bottom: 18px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    background: #f5f7fa;
    transition: border 0.2s;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--primary-light);
    outline: none;
    background: #fff;
}

.contact-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.contact-form button:hover {
    background: var(--primary-light);
    transform: translateY(-1px) scale(1.02);
}

/* Responsive */
@media (max-width: 600px) {
    .stpp-contact-form-container {
        padding: 18px 6px 12px 6px;
    }
    .stpp-welcome-message h1 {
        font-size: 1.3rem;
    }
    .btn-platform {
        padding: 12px 10px;
        font-size: 1rem;
    }
}