/* WP Moodle SSO — Styles frontend */

.moodle-sso-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #e7630a;
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(231, 99, 10, 0.3);
    border: none;
    cursor: pointer;
}

.moodle-sso-btn::before {
    content: '🎓';
    font-size: 18px;
}

.moodle-sso-btn:hover {
    background: #c9540a;
    box-shadow: 0 4px 14px rgba(231, 99, 10, 0.45);
    transform: translateY(-1px);
}

.moodle-sso-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(231, 99, 10, 0.3);
}

.moodle-sso-login {
    background: #555d6b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.moodle-sso-login:hover {
    background: #3d4450;
}
