.portal-auth-form {
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.portal-auth-form h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #0A3D62;
    font-size: 2.2rem;
}
.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0A3D62;
}
.form-section h3 {
    color: #0A3D62;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group.half {
    flex: 1;
    margin-bottom: 0;
}
.form-group.third {
    flex: 1;
    margin-bottom: 0;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #0A3D62;
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
}
.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}
.form-actions {
    margin-top: 40px;
    text-align: center;
}
.button {
    padding: 16px 40px;
    background: linear-gradient(135deg, #0A3D62 0%, #1e5f8b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 61, 98, 0.3);
}
.auth-links {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 1rem;
}
.auth-links a {
    color: #0A3D62;
    text-decoration: none;
    font-weight: 600;
}
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #c3e6cb;
    text-align: center;
}
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
    .portal-auth-form {
        margin: 20px;
        padding: 30px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group.half,
    .form-group.third {
        margin-bottom: 20px;
    }
    .form-section {
        padding: 20px;
    }
}
.portal-nav {
    background: linear-gradient(90deg, #007bff, #00b7eb);
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.portal-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.portal-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portal-nav li {
    margin: 0 20px;
}
.portal-nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}
.portal-nav a.active {
    color: #ffeb3b;
    border-bottom: 2px solid #ffeb3b;
}
.portal-nav a:hover {
    color: #ffeb3b;
}
.portal-nav .logout-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.portal-nav .logout-button:hover {
    background: #c82333;
}
.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-content h1 {
    color: #007bff;
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-content p {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
}
.contact-form .wpforms-field-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}
.contact-form .wpforms-field input:focus,
.contact-form .wpforms-field textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}
.contact-form .wpforms-submit {
    background: linear-gradient(90deg, #007bff, #00b7eb);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-form .wpforms-submit:hover {
    background: linear-gradient(90deg, #0056b3, #0098c7);
}
.dashboard-cards .card {
    background: linear-gradient(135deg, #007bff, #00b7eb);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.dashboard-cards .card:hover {
    transform: translateY(-5px);
}
.dashboard-cards .card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}
.dashboard-cards .card p {
    color: #f0f4ff;
    font-size: 14px;
    margin-bottom: 15px;
}
.dashboard-cards .card a.button {
    background: #ffeb3b;
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.dashboard-cards .card a.button:hover {
    background: #ffd700;
}

/*# sourceMappingURL=portal.css.map*/