.cilogon-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--access-secondary) 0%, var(--access-primary) 100%);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cilogon-btn:hover {
    background: linear-gradient(135deg, var(--access-secondary) 0%, var(--access-primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cilogon-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}